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