public static enum DataManager.TrackingType extends java.lang.Enum<DataManager.TrackingType>
| Enum Constant and Description |
|---|
ENTITY_LIST |
ENTITY_MAP |
ENTITY_PROPERTY |
ENTITY_SET |
LIST |
MAP |
SET |
| Modifier and Type | Method and Description |
|---|---|
static DataManager.TrackingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataManager.TrackingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataManager.TrackingType LIST
public static final DataManager.TrackingType SET
public static final DataManager.TrackingType MAP
public static final DataManager.TrackingType ENTITY_PROPERTY
public static final DataManager.TrackingType ENTITY_LIST
public static final DataManager.TrackingType ENTITY_SET
public static final DataManager.TrackingType ENTITY_MAP
public static DataManager.TrackingType[] values()
for (DataManager.TrackingType c : DataManager.TrackingType.values()) System.out.println(c);
public static DataManager.TrackingType 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