public enum EnumStoreMode extends java.lang.Enum<EnumStoreMode>
Enum Constant and Description |
---|
ID
Store enum IDs.
|
NAME
Store enum names.
|
Modifier and Type | Method and Description |
---|---|
static EnumStoreMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumStoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumStoreMode ID
fromId
class and work only with primitive ids
for which stringify and type factory instances can be inferred from class definitions.public static final EnumStoreMode NAME
public static EnumStoreMode[] values()
for (EnumStoreMode c : EnumStoreMode.values()) System.out.println(c);
public static EnumStoreMode 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