public enum BatchStatus extends Enum<BatchStatus>
Enum Constant and Description |
---|
COMPLETED |
PROCESSING |
QUEUED |
Modifier and Type | Method and Description |
---|---|
static BatchStatus |
fromString(String str) |
static BatchStatus |
valueOf(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 COMPLETED
public static final BatchStatus QUEUED
public static final BatchStatus PROCESSING
public static BatchStatus[] values()
for (BatchStatus c : BatchStatus.values()) System.out.println(c);
public static BatchStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static BatchStatus fromString(String str)