public enum BatchState extends java.lang.Enum<BatchState>
"ACTIVE" - The batch is being worked on by the analysts
"PENDING" - Work has not started on the batch
"SCHEDULED" - A start time for the batch has been set and will be worked on after that date
"CANCELLED" - The execution of the batch has been cancelled by the customer "COMPLETED" - Work on this batch has been compeleted| Enum Constant and Description |
|---|
ACTIVE |
CANCELLED |
COMPLETED |
PENDING |
SCHEDULED |
| Modifier and Type | Method and Description |
|---|---|
static BatchState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BatchState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchState PENDING
public static final BatchState SCHEDULED
public static final BatchState ACTIVE
public static final BatchState CANCELLED
public static final BatchState COMPLETED
public static BatchState[] values()
for (BatchState c : BatchState.values()) System.out.println(c);
public static BatchState 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 null