public static enum StateStoreRegistryKey.EntryType extends Enum<StateStoreRegistryKey.EntryType>
| Enum Constant and Description |
|---|
Alphanumeric
Defines a plain alphanumeric sequence
|
Bytearray
Defines a plain byte sequence
|
File
Defines a file reachable within the local filesystem
|
ISerializable
Defines any object that can be serialized and deserialized as defined by
ISerializable |
Serializable
Defines any object that can be serialized and deserialized as defined by
Serializable |
| Modifier and Type | Method and Description |
|---|---|
static StateStoreRegistryKey.EntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateStoreRegistryKey.EntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateStoreRegistryKey.EntryType Alphanumeric
public static final StateStoreRegistryKey.EntryType File
public static final StateStoreRegistryKey.EntryType Bytearray
public static final StateStoreRegistryKey.EntryType Serializable
Serializablepublic static final StateStoreRegistryKey.EntryType ISerializable
ISerializablepublic static StateStoreRegistryKey.EntryType[] values()
for (StateStoreRegistryKey.EntryType c : StateStoreRegistryKey.EntryType.values()) System.out.println(c);
public static StateStoreRegistryKey.EntryType 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.