public enum EscapeKeyEditAction extends java.lang.Enum<EscapeKeyEditAction> implements ValueEnum
Enum Constant and Description |
---|
CANCEL
cancels the current edit and discards edit values
|
DONE
end editing (will save edit values if
autoSaveEdits
is true). |
EXIT
exit the editor (edit values will be left intact but not saved).
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static EscapeKeyEditAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EscapeKeyEditAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EscapeKeyEditAction CANCEL
public static final EscapeKeyEditAction DONE
autoSaveEdits
is true).public static final EscapeKeyEditAction EXIT
public static EscapeKeyEditAction[] values()
for (EscapeKeyEditAction c : EscapeKeyEditAction.values()) System.out.println(c);
public static EscapeKeyEditAction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null