public enum BatchStatus extends java.lang.Enum<BatchStatus>
Enum Constant and Description |
---|
Cancelled
Batch file is cancelled
|
Completed
Batch file has been completely processed.
|
Creating
Batch file is currently being created.
|
Deleted
Batch file has been deleted.
|
Errors
Batch file was processed with some errors.
|
Paused
Batch processing was paused.
|
Processing
Batch is currently being processed.
|
SystemErrors
Batch file experienced system errors and cannot be processed.
|
Waiting
Batch file has been received and is in the queue to be processed.
|
Modifier and Type | Method and Description |
---|---|
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 null