|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EditCompletionEvent>
com.smartgwt.client.types.EditCompletionEvent
public enum EditCompletionEvent
What event / user interaction type caused cell editing to complete.
Enum Constant Summary | |
---|---|
ARROW_DOWN
down arrow key. |
|
ARROW_UP
Up arrow key pressed. |
|
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 |
|
ENTER
Enter pressed |
|
ESCAPE
User pressed Escape. |
|
FIELD_CHANGE
Edit moved to a different field (same row) |
|
PROGRAMMATIC
Edit completed via explicit function call |
|
SHIFT_TAB
User pressed Shift+Tab. |
|
TAB
User pressed Tab. |
Method Summary | |
---|---|
String |
getValue()
|
static EditCompletionEvent |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EditCompletionEvent CLICK_OUTSIDE
public static final EditCompletionEvent CLICK
public static final EditCompletionEvent DOUBLE_CLICK
public static final EditCompletionEvent ENTER
public static final EditCompletionEvent ESCAPE
public static final EditCompletionEvent ARROW_UP
public static final EditCompletionEvent ARROW_DOWN
public static final EditCompletionEvent TAB
public static final EditCompletionEvent SHIFT_TAB
public static final EditCompletionEvent FIELD_CHANGE
public static final EditCompletionEvent PROGRAMMATIC
Method Detail |
---|
public static EditCompletionEvent[] values()
for (EditCompletionEvent c : EditCompletionEvent.values()) System.out.println(c);
public static EditCompletionEvent valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |