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