Enum Constant and Description |
---|
APPROVED |
ATTACHED |
ERROR |
EXPUNGED |
HOLD |
IMPORTED |
IMPORTING |
INPROCESS |
MAILED |
NEW |
PRE_PROCESSING |
REVIEW |
Modifier and Type | Method and Description |
---|---|
static Job.State |
get(int code) |
java.lang.Integer |
getCode() |
static Job.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Job.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Job.State ERROR
public static final Job.State NEW
public static final Job.State IMPORTING
public static final Job.State IMPORTED
public static final Job.State APPROVED
public static final Job.State ATTACHED
public static final Job.State EXPUNGED
public static final Job.State MAILED
public static final Job.State PRE_PROCESSING
public static final Job.State REVIEW
public static final Job.State HOLD
public static final Job.State INPROCESS
public static Job.State[] values()
for (Job.State c : Job.State.values()) System.out.println(c);
public static Job.State 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.Integer getCode()
public static Job.State get(int code)