public static enum DataChange.ChangeAction extends Enum<DataChange.ChangeAction>
Modifier and Type | Method and Description |
---|---|
static DataChange.ChangeAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataChange.ChangeAction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DataChange.ChangeAction ADD
public static final DataChange.ChangeAction REMOVE
public static final DataChange.ChangeAction UPDATE
public static DataChange.ChangeAction 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 nullpublic static DataChange.ChangeAction[] values()
for (DataChange.ChangeAction c : DataChange.ChangeAction.values()) System.out.println(c);
Copyright © 2015 Oracle and/or its afflilates. All Rights Reserved.