Serializable
, Comparable<InplaceEditorProvider.EditorInvocationType>
public static enum InplaceEditorProvider.EditorInvocationType extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.