public enum EnterKeyEditAction extends java.lang.Enum<EnterKeyEditAction> implements ValueEnum
| Enum Constant and Description | 
|---|
DONE
end editing (will save edit values if  
ListGrid.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
ListGrid.autoSaveEdits is true).
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "done".
public static final EnterKeyEditAction NEXTCELL
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "nextCell".
public static final EnterKeyEditAction NEXTROW
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "nextRow".
public static final EnterKeyEditAction NEXTROWSTART
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "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