public enum BlockingOperation extends java.lang.Enum<BlockingOperation>
| Enum Constant and Description |
|---|
CHOOSE |
MESSAGE_SET |
MESSAGE_UPDATE |
NO_BLOCKING_OPERATION |
PAUSE |
PROMPT_FOR |
READKEY |
WAIT_FOR |
| Modifier and Type | Method and Description |
|---|---|
static BlockingOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockingOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockingOperation NO_BLOCKING_OPERATION
public static final BlockingOperation PAUSE
public static final BlockingOperation WAIT_FOR
public static final BlockingOperation READKEY
public static final BlockingOperation PROMPT_FOR
public static final BlockingOperation CHOOSE
public static final BlockingOperation MESSAGE_SET
public static final BlockingOperation MESSAGE_UPDATE
public static BlockingOperation[] values()
for (BlockingOperation c : BlockingOperation.values()) System.out.println(c);
public static BlockingOperation 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