public enum BatchState extends java.lang.Enum<BatchState>
| Enum Constant and Description |
|---|
ACTIVE |
CANCELLED |
COMPLETED |
DELETED |
INACTIVE |
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 INACTIVE
public static final BatchState DELETED
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