public enum BatchOperationStatus extends java.lang.Enum<BatchOperationStatus>
Enum Constant and Description |
---|
FinishedSuccessfully
Indicates processing succeeded for the batch operation
|
FinishedWithErrors
Indicates processing finished with errors for the batch operation
|
Processing
Indicates a batch operation is currently being processed
|
Unprocessed
Indicates a batch operation has not been processed
|
Modifier and Type | Method and Description |
---|---|
static BatchOperationStatus |
getByCode(char code) |
char |
getCode() |
void |
setCode(char code) |
static BatchOperationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BatchOperationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchOperationStatus Unprocessed
public static final BatchOperationStatus Processing
public static final BatchOperationStatus FinishedSuccessfully
public static final BatchOperationStatus FinishedWithErrors
public static BatchOperationStatus[] values()
for (BatchOperationStatus c : BatchOperationStatus.values()) System.out.println(c);
public static BatchOperationStatus 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 BatchOperationStatus getByCode(char code)
public char getCode()
public void setCode(char code)