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