public enum CommonField extends Enum<CommonField>
| Enum Constant and Description |
|---|
USER_FORM_INFO_FLAG_BIRTHDAY
生日
|
USER_FORM_INFO_FLAG_EDUCATION_BACKGRO
教育背景
|
USER_FORM_INFO_FLAG_EMAIL
邮箱
|
USER_FORM_INFO_FLAG_HABIT
兴趣爱好
|
USER_FORM_INFO_FLAG_IDCARD
身份证
|
USER_FORM_INFO_FLAG_INCOME
收入
|
USER_FORM_INFO_FLAG_INDUSTRY
行业
|
USER_FORM_INFO_FLAG_LOCATION
详细地址
|
USER_FORM_INFO_FLAG_MOBILE
手机号
|
USER_FORM_INFO_FLAG_NAME
姓名
|
USER_FORM_INFO_FLAG_SEX
性别
|
| Modifier and Type | Method and Description |
|---|---|
static CommonField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonField USER_FORM_INFO_FLAG_MOBILE
public static final CommonField USER_FORM_INFO_FLAG_SEX
public static final CommonField USER_FORM_INFO_FLAG_NAME
public static final CommonField USER_FORM_INFO_FLAG_BIRTHDAY
public static final CommonField USER_FORM_INFO_FLAG_IDCARD
public static final CommonField USER_FORM_INFO_FLAG_EMAIL
public static final CommonField USER_FORM_INFO_FLAG_LOCATION
public static final CommonField USER_FORM_INFO_FLAG_EDUCATION_BACKGRO
public static final CommonField USER_FORM_INFO_FLAG_INDUSTRY
public static final CommonField USER_FORM_INFO_FLAG_INCOME
public static final CommonField USER_FORM_INFO_FLAG_HABIT
public static CommonField[] values()
for (CommonField c : CommonField.values()) System.out.println(c);
public static CommonField valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.