public enum RowEndEditAction extends java.lang.Enum<RowEndEditAction> implements ValueEnum
| Enum Constant and Description | 
|---|
DONE
complete the edit. 
 | 
NEXT
navigate to the first editable cell in the next record 
 | 
NONE
take no action 
 | 
SAME
navigate to the first editable cell in the same record 
 | 
STOP
Leave focus in the cell being edited (take no action) 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getValue()  | 
static RowEndEditAction | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static RowEndEditAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RowEndEditAction SAME
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "same".
public static final RowEndEditAction NEXT
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "next".
public static final RowEndEditAction DONE
 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 RowEndEditAction STOP
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "stop".
public static final RowEndEditAction NONE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static RowEndEditAction[] values()
for (RowEndEditAction c : RowEndEditAction.values()) System.out.println(c);
public static RowEndEditAction 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