public enum EnterKeyEditAction extends java.lang.Enum<EnterKeyEditAction> implements ValueEnum
Enum Constant and Description |
---|
DONE
end editing (will save edit values if
autoSaveEdits
is true). |
NEXTCELL
edit the next editable cell in the record
|
NEXTROW
edit the same field in the next editable record
|
NEXTROWSTART
edit the first editable cell in next editable record
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static EnterKeyEditAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnterKeyEditAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnterKeyEditAction DONE
autoSaveEdits
is true).public static final EnterKeyEditAction NEXTCELL
public static final EnterKeyEditAction NEXTROW
public static final EnterKeyEditAction NEXTROWSTART
public static EnterKeyEditAction[] values()
for (EnterKeyEditAction c : EnterKeyEditAction.values()) System.out.println(c);
public static EnterKeyEditAction 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