|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ActionEvent.Command>
com.guiseframework.event.ActionEvent.Command
public static enum ActionEvent.Command
The commands that can be represented by an action.
| Enum Constant Summary | |
|---|---|
ACTIVATE
The action requests activitation, Traditionally this is indicated by a left mouse button double click. |
|
INFO
The action requests contextual information. |
|
SELECT
The action requests an item to be selected. |
|
| Method Summary | |
|---|---|
static ActionEvent.Command |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ActionEvent.Command[] |
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 ActionEvent.Command SELECT
public static final ActionEvent.Command INFO
public static final ActionEvent.Command ACTIVATE
| Method Detail |
|---|
public static ActionEvent.Command[] values()
for (ActionEvent.Command c : ActionEvent.Command.values()) System.out.println(c);
public static ActionEvent.Command 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||