public enum UserStatusField extends Enum<UserStatusField> implements Valuable
| Modifier and Type | Class and Description |
|---|---|
static class |
UserStatusField.UserStatusFieldDeserializer |
static class |
UserStatusField.UserStatusFieldSerializer |
| Enum Constant and Description |
|---|
ACTIVE |
CANNOT_DELETE_EDIT |
CANNOT_DELETE_EDIT_UPLOAD |
INACTIVE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static UserStatusField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserStatusField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStatusField ACTIVE
public static final UserStatusField INACTIVE
public static final UserStatusField CANNOT_DELETE_EDIT
public static final UserStatusField CANNOT_DELETE_EDIT_UPLOAD
public static UserStatusField[] values()
for (UserStatusField c : UserStatusField.values()) System.out.println(c);
public static UserStatusField 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 null