public static enum User.BIT_MASKS extends Enum<User.BIT_MASKS> implements BIT_MASKS
Modifier and Type | Method and Description |
---|---|
String |
getDesc() |
Integer |
getValue() |
static User.BIT_MASKS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static User.BIT_MASKS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final User.BIT_MASKS ACTIVE
public static final User.BIT_MASKS DISABLED
public static final User.BIT_MASKS AUDIT
public static User.BIT_MASKS[] values()
for (User.BIT_MASKS c : User.BIT_MASKS.values()) System.out.println(c);
public static User.BIT_MASKS 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 © 2018. All rights reserved.