public enum InlineEditEvent extends java.lang.Enum<InlineEditEvent> implements ValueEnum
EditProxy.inlineEditEvent.| Enum Constant and Description |
|---|
CLICK A single mouse click triggers inline editing |
DBLORKEYPRESS A double click triggers inline editing. |
DOUBLECLICK A double click triggers inline editing |
NONE No mouse event will trigger inline editing, but it can still be triggered by a call to EditProxy.startInlineEditing(). |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static InlineEditEvent | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static InlineEditEvent[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final InlineEditEvent 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 InlineEditEvent DOUBLECLICK
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 InlineEditEvent NONE
EditProxy.startInlineEditing(). 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 final InlineEditEvent DBLORKEYPRESS
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "dblOrKeypress".
public static InlineEditEvent[] values()
for (InlineEditEvent c : InlineEditEvent.values()) System.out.println(c);
public static InlineEditEvent 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