public enum ProcessStep extends java.lang.Enum<ProcessStep>
| Enum Constant and Description |
|---|
Complete |
Error |
Invalid |
MaxRetriesExceeded |
Pending |
Processing |
Retrying |
Validating |
| Modifier and Type | Method and Description |
|---|---|
static ProcessStep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessStep Pending
public static final ProcessStep Validating
public static final ProcessStep Processing
public static final ProcessStep Invalid
public static final ProcessStep Retrying
public static final ProcessStep MaxRetriesExceeded
public static final ProcessStep Error
public static final ProcessStep Complete
public static ProcessStep[] values()
for (ProcessStep c : ProcessStep.values()) System.out.println(c);
public static ProcessStep 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