public enum AccountFieldName extends java.lang.Enum<AccountFieldName>
Enum Constant and Description |
---|
FULL_NAME |
REGISTER_NEW_EMAIL |
USER_NAME |
Modifier and Type | Method and Description |
---|---|
static AccountFieldName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountFieldName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountFieldName FULL_NAME
public static final AccountFieldName USER_NAME
public static final AccountFieldName REGISTER_NEW_EMAIL
public static AccountFieldName[] values()
for (AccountFieldName c : AccountFieldName.values()) System.out.println(c);
public static AccountFieldName valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null