public enum EntryDataType extends Enum<EntryDataType>
Enum Constant and Description |
---|
FLAT
Entry data is stored as a flat array of values.
|
USER_TYPE
Entry data is stored as original user object.
|
Modifier and Type | Method and Description |
---|---|
static EntryDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryDataType FLAT
public static final EntryDataType USER_TYPE
public static EntryDataType[] values()
for (EntryDataType c : EntryDataType.values()) System.out.println(c);
public static EntryDataType 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 © GigaSpaces.