public static enum BlockingComponent.Message extends java.lang.Enum<BlockingComponent.Message>
Enum Constant and Description |
---|
BUSY |
CANCELLING |
LOADING |
NO_MESSAGE |
SAVING |
STARTING |
STOPPING |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getText() |
static BlockingComponent.Message |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockingComponent.Message[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockingComponent.Message NO_MESSAGE
public static final BlockingComponent.Message BUSY
public static final BlockingComponent.Message STARTING
public static final BlockingComponent.Message STOPPING
public static final BlockingComponent.Message SAVING
public static final BlockingComponent.Message CANCELLING
public static final BlockingComponent.Message LOADING
public static BlockingComponent.Message[] values()
for (BlockingComponent.Message c : BlockingComponent.Message.values()) System.out.println(c);
public static BlockingComponent.Message 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 nullpublic java.lang.String getText()