public enum EnumExecutionStatus extends java.lang.Enum<EnumExecutionStatus>
| Enum Constant and Description |
|---|
CREATING
The CREATING.
|
DONE
The DONE.
|
FAILURE
The FAILURE.
|
IDLE
The IDLE.
|
PENDING
The PENDING.
|
PRINTING
The PRINTING.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumExecutionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumExecutionStatus PENDING
public static final EnumExecutionStatus PRINTING
public static final EnumExecutionStatus IDLE
public static final EnumExecutionStatus CREATING
public static final EnumExecutionStatus DONE
public static final EnumExecutionStatus FAILURE
public static EnumExecutionStatus[] values()
for (EnumExecutionStatus c : EnumExecutionStatus.values()) System.out.println(c);
public static EnumExecutionStatus 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()