public enum BatchStatus extends java.lang.Enum<BatchStatus>
Enum Constant and Description |
---|
Cancelled |
Completed |
Creating |
Deleted |
Errors |
Paused |
Processing |
SystemErrors |
Waiting |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static BatchStatus |
valueOf(int intValue) |
static BatchStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BatchStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchStatus Waiting
public static final BatchStatus SystemErrors
public static final BatchStatus Cancelled
public static final BatchStatus Completed
public static final BatchStatus Creating
public static final BatchStatus Deleted
public static final BatchStatus Errors
public static final BatchStatus Paused
public static final BatchStatus Processing
public static BatchStatus[] values()
for (BatchStatus c : BatchStatus.values()) System.out.println(c);
public static BatchStatus 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 static BatchStatus valueOf(int intValue)
public int getValue()