public enum PersistentDataType extends java.lang.Enum<PersistentDataType> implements java.io.Serializable
| Enum Constant and Description |
|---|
DISABLED
Data is not saved and null
|
SERIALIZABLE
Container can hold any
Serializable and is saved. |
STANDARD
Container holds
StandardInfoList and can not be modified. |
| Modifier and Type | Method and Description |
|---|---|
static PersistentDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PersistentDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistentDataType DISABLED
public static final PersistentDataType SERIALIZABLE
Serializable and is saved.public static final PersistentDataType STANDARD
StandardInfoList and can not be modified.public static PersistentDataType[] values()
for (PersistentDataType c : PersistentDataType.values()) System.out.println(c);
public static PersistentDataType 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