public enum EditCompletionEvent extends java.lang.Enum<EditCompletionEvent> implements ValueEnum
| Enum Constant and Description | 
|---|
| CLICKUser started editing another row by clicking on it | 
| CLICK_OUTSIDEUser clicked outside editor during edit. | 
| DOUBLE_CLICKUser started editing another row by double clicking | 
| DOWN_ARROW_KEYPRESSdown arrow key. | 
| EDIT_FIELD_CHANGEEdit moved to a different field (same row) | 
| ENTER_KEYPRESSEnter pressed. | 
| ESCAPE_KEYPRESSUser pressed Escape. | 
| PROGRAMMATICEdit completed via explicit function call | 
| SHIFT_TAB_KEYPRESSUser pressed Shift+Tab. | 
| TAB_KEYPRESSUser pressed Tab. | 
| UP_ARROW_KEYPRESSUp arrow key pressed. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static EditCompletionEvent | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static EditCompletionEvent[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EditCompletionEvent CLICK_OUTSIDE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "click_outside".
public static final EditCompletionEvent CLICK
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "click".
public static final EditCompletionEvent DOUBLE_CLICK
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "doubleClick".
public static final EditCompletionEvent ENTER_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "enter".
public static final EditCompletionEvent ESCAPE_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "escape".
public static final EditCompletionEvent UP_ARROW_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "arrow_up".
public static final EditCompletionEvent DOWN_ARROW_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "arrow_down".
public static final EditCompletionEvent TAB_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "tab".
public static final EditCompletionEvent SHIFT_TAB_KEYPRESS
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "shift_tab".
public static final EditCompletionEvent EDIT_FIELD_CHANGE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "field_change".
public static final EditCompletionEvent PROGRAMMATIC
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "programmatic".
public static EditCompletionEvent[] values()
for (EditCompletionEvent c : EditCompletionEvent.values()) System.out.println(c);
public static EditCompletionEvent 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