public enum DpFlag extends Enum<DpFlag>
| Enum Constant and Description |
|---|
LEAF_LIST_AS_LEAF |
NO_DEFAULTS |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
get integer value for enum
|
static DpFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DpFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DpFlag NO_DEFAULTS
public static final DpFlag LEAF_LIST_AS_LEAF
public static DpFlag[] values()
for (DpFlag c : DpFlag.values()) System.out.println(c);
public static DpFlag 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 nullpublic int getValue()