Enum EditCompletionEvent
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<EditCompletionEvent>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUser started editing another row by clicking on itUser clicked outside editor during edit.User started editing another row by double clickingdown arrow key.Edit moved to a different field (same row)Enter pressed.User pressed Escape.Edit completed via explicit function callUser pressed Shift+Tab.User pressed Tab.Up arrow key pressed. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static EditCompletionEvent
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.
-
Enum Constant Details
-
CLICK_OUTSIDE
User clicked outside editor during edit.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "click_outside". -
CLICK
User started editing another row by clicking on itIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "click". -
DOUBLE_CLICK
User started editing another row by double clickingIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "doubleClick". -
ENTER_KEYPRESS
Enter pressed.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "enter". -
ESCAPE_KEYPRESS
User pressed Escape.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "escape". -
UP_ARROW_KEYPRESS
Up arrow key pressed.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "arrow_up". -
DOWN_ARROW_KEYPRESS
down arrow key.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "arrow_down". -
TAB_KEYPRESS
User pressed Tab.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "tab". -
SHIFT_TAB_KEYPRESS
User pressed Shift+Tab.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "shift_tab". -
EDIT_FIELD_CHANGE
Edit moved to a different field (same row)If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "field_change". -
PROGRAMMATIC
Edit completed via explicit function callIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "programmatic".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-