public enum StateChangeType extends Enum<StateChangeType>
| Modifier and Type | Method and Description |
|---|---|
static StateChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateChangeType Update
public static final StateChangeType Restore
public static StateChangeType[] values()
for (StateChangeType c : StateChangeType.values()) System.out.println(c);
public static StateChangeType 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 nullCopyright © 2016. All Rights Reserved.