public enum EnumStatusCode extends java.lang.Enum<EnumStatusCode>
| Enum Constant and Description |
|---|
ABORTED
This constant specifies value representation of status code aborted
|
ACTIVE
This constant specifies value representation of status code active
|
CANCELLED
This constant specifies value representation of status code cancelled
|
COMPLETED
This constant specifies value representation of status code completed
|
NEW
This constant specifies value representation of status code new
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumStatusCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumStatusCode COMPLETED
public static final EnumStatusCode ABORTED
public static final EnumStatusCode CANCELLED
public static final EnumStatusCode NEW
public static final EnumStatusCode ACTIVE
public static EnumStatusCode[] values()
for (EnumStatusCode c : EnumStatusCode.values()) System.out.println(c);
public static EnumStatusCode 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()