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