Package com.foxinmy.weixin4j.type.card
Enum ActivateCommonField
- java.lang.Object
-
- java.lang.Enum<ActivateCommonField>
-
- com.foxinmy.weixin4j.type.card.ActivateCommonField
-
- All Implemented Interfaces:
Serializable
,Comparable<ActivateCommonField>
public enum ActivateCommonField extends Enum<ActivateCommonField>
会员卡激活设置公共字段类型
-
-
Enum Constant Summary
Enum Constants Enum Constant 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
性别
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActivateCommonField
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActivateCommonField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_FORM_INFO_FLAG_MOBILE
public static final ActivateCommonField USER_FORM_INFO_FLAG_MOBILE
手机号
-
USER_FORM_INFO_FLAG_SEX
public static final ActivateCommonField USER_FORM_INFO_FLAG_SEX
性别
-
USER_FORM_INFO_FLAG_NAME
public static final ActivateCommonField USER_FORM_INFO_FLAG_NAME
姓名
-
USER_FORM_INFO_FLAG_BIRTHDAY
public static final ActivateCommonField USER_FORM_INFO_FLAG_BIRTHDAY
生日
-
USER_FORM_INFO_FLAG_IDCARD
public static final ActivateCommonField USER_FORM_INFO_FLAG_IDCARD
身份证
-
USER_FORM_INFO_FLAG_EMAIL
public static final ActivateCommonField USER_FORM_INFO_FLAG_EMAIL
邮箱
-
USER_FORM_INFO_FLAG_LOCATION
public static final ActivateCommonField USER_FORM_INFO_FLAG_LOCATION
详细地址
-
USER_FORM_INFO_FLAG_EDUCATION_BACKGRO
public static final ActivateCommonField USER_FORM_INFO_FLAG_EDUCATION_BACKGRO
教育背景
-
USER_FORM_INFO_FLAG_INDUSTRY
public static final ActivateCommonField USER_FORM_INFO_FLAG_INDUSTRY
行业
-
USER_FORM_INFO_FLAG_INCOME
public static final ActivateCommonField USER_FORM_INFO_FLAG_INCOME
收入
-
USER_FORM_INFO_FLAG_HABIT
public static final ActivateCommonField USER_FORM_INFO_FLAG_HABIT
兴趣爱好
-
-
Method Detail
-
values
public static ActivateCommonField[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ActivateCommonField c : ActivateCommonField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivateCommonField valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-