|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ProcessCommand>
com.guiseframework.input.ProcessCommand
public enum ProcessCommand
Commands for reacting to a decision to be made during a process. A process command is semantically more general than a sequence command. While a "next" command is similar to "continue" in the context of a wizard and either could reasonably cause a progresion to the next stage of the sequence, selecting an OK button for a confirmation dialog would not be appropriate in response to the "next" command, although it would be for the "continue" command.
| Enum Constant Summary | |
|---|---|
ABORT
The command for aborting a process. |
|
CONTINUE
The command for continuing a process. |
|
| Method Summary | |
|---|---|
static ProcessCommand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ProcessCommand[] |
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 ProcessCommand CONTINUE
public static final ProcessCommand ABORT
| Method Detail |
|---|
public static ProcessCommand[] values()
for (ProcessCommand c : ProcessCommand.values()) System.out.println(c);
public static ProcessCommand 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 | ||||||||