public static enum GPMessage.MessageType extends java.lang.Enum<GPMessage.MessageType>
Enum Constant and Description |
---|
TYPE_ABORT |
TYPE_EMPTY |
TYPE_ERROR |
TYPE_INFORMATIVE |
TYPE_PROCESS_DEFINITION |
TYPE_PROCESS_START |
TYPE_PROCESS_STOP |
TYPE_WARNING |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static GPMessage.MessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GPMessage.MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GPMessage.MessageType TYPE_ABORT
public static final GPMessage.MessageType TYPE_EMPTY
public static final GPMessage.MessageType TYPE_ERROR
public static final GPMessage.MessageType TYPE_INFORMATIVE
public static final GPMessage.MessageType TYPE_PROCESS_DEFINITION
public static final GPMessage.MessageType TYPE_PROCESS_START
public static final GPMessage.MessageType TYPE_PROCESS_STOP
public static final GPMessage.MessageType TYPE_WARNING
public static GPMessage.MessageType[] values()
for (GPMessage.MessageType c : GPMessage.MessageType.values()) System.out.println(c);
public static GPMessage.MessageType 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 getValue()