public static enum InplaceEditorProvider.EditorInvocationType extends java.lang.Enum<InplaceEditorProvider.EditorInvocationType>
| Enum Constant | Description |
|---|---|
CODE |
Invoked by
ActionFactory.getInplaceEditorController (inplaceEditorAction).openEditor(widget) method. |
KEY |
Invoked by keyboard.
|
MOUSE |
Invoked by mouse.
|
| Modifier and Type | Method | Description |
|---|---|---|
static InplaceEditorProvider.EditorInvocationType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static InplaceEditorProvider.EditorInvocationType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InplaceEditorProvider.EditorInvocationType MOUSE
public static final InplaceEditorProvider.EditorInvocationType KEY
public static final InplaceEditorProvider.EditorInvocationType CODE
ActionFactory.getInplaceEditorController (inplaceEditorAction).openEditor(widget) method.public static InplaceEditorProvider.EditorInvocationType[] values()
for (InplaceEditorProvider.EditorInvocationType c : InplaceEditorProvider.EditorInvocationType.values()) System.out.println(c);
public static InplaceEditorProvider.EditorInvocationType 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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.