public static enum IError.ErrorType extends java.lang.Enum<IError.ErrorType>
enumeration defines the available types or errors, which can be:
| Enum Constant and Description |
|---|
CORRECTION
The error is temporary, but will lead to a failure until correction has not been applied
|
PERMANENT
The error is permanent, it will lead to a failure each time the process is called
|
TEMPORARY
The error is temporary, the process has to be called again later
|
| Modifier and Type | Method and Description |
|---|---|
static IError.ErrorType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static IError.ErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IError.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IError.ErrorType PERMANENT
public static final IError.ErrorType TEMPORARY
public static final IError.ErrorType CORRECTION
public static IError.ErrorType[] values()
for (IError.ErrorType c : IError.ErrorType.values()) System.out.println(c);
public static IError.ErrorType 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 java.lang.String value()
public static IError.ErrorType fromValue(java.lang.String v)