public static enum DataManager.ChangeKind extends Enum<DataManager.ChangeKind>
| Modifier and Type | Method and Description |
|---|---|
static DataManager.ChangeKind |
valueOf(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(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 null