public enum UserIdentTypeEnum extends Enum<UserIdentTypeEnum>
| 枚举常量和说明 |
|---|
FOREIGN_PRC |
HK_MAC_RP |
HK_MACAO |
ID_CARD
证件类型 :
id_card: 身份证
passport: 护照
hk_macao: 港澳居民来往内地通行证
taiwan: 台湾居民来往大陆通行证
|
PASSPORT |
TAIWAN |
TAIWAN_RP |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getCode() |
String |
getRemark() |
static UserIdentTypeEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static UserIdentTypeEnum[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final UserIdentTypeEnum ID_CARD
public static final UserIdentTypeEnum PASSPORT
public static final UserIdentTypeEnum HK_MACAO
public static final UserIdentTypeEnum TAIWAN
public static final UserIdentTypeEnum FOREIGN_PRC
public static final UserIdentTypeEnum HK_MAC_RP
public static final UserIdentTypeEnum TAIWAN_RP
public static UserIdentTypeEnum[] values()
for (UserIdentTypeEnum c : UserIdentTypeEnum.values()) System.out.println(c);
public static UserIdentTypeEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getCode()
public String getRemark()
Copyright © 2025. All rights reserved.