public enum EditCompletionEvent extends java.lang.Enum<EditCompletionEvent> implements ValueEnum
| Enum Constant and Description |
|---|
CLICK User started editing another row by clicking on it |
CLICK_OUTSIDE User clicked outside editor during edit. |
DOUBLE_CLICK User started editing another row by double clicking |
DOWN_ARROW_KEYPRESS down arrow key. |
EDIT_FIELD_CHANGE Edit moved to a different field (same row) |
ENTER_KEYPRESS Enter pressed. |
ESCAPE_KEYPRESS User pressed Escape. |
PROGRAMMATIC Edit completed via explicit function call |
SHIFT_TAB_KEYPRESS User pressed Shift+Tab. |
TAB_KEYPRESS User pressed Tab. |
UP_ARROW_KEYPRESS Up 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