public static enum Error.Type extends java.lang.Enum<Error.Type>
| Enum Constant and Description |
|---|
INFINITE_LOOP |
INVALID_NON_REQUIRED_INPUT |
INVALID_OUTPUT |
INVALID_REQUIRED_INPUT |
MATCH_NOT_FOUND |
STAGING_ERROR |
UNKNOWN_INPUT |
UNKNOWN_INPUT_MAPPING |
UNKNOWN_TABLE |
| Modifier and Type | Method and Description |
|---|---|
static Error.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Error.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Error.Type UNKNOWN_INPUT
public static final Error.Type INVALID_REQUIRED_INPUT
public static final Error.Type INVALID_NON_REQUIRED_INPUT
public static final Error.Type UNKNOWN_INPUT_MAPPING
public static final Error.Type STAGING_ERROR
public static final Error.Type MATCH_NOT_FOUND
public static final Error.Type UNKNOWN_TABLE
public static final Error.Type INFINITE_LOOP
public static final Error.Type INVALID_OUTPUT
public static Error.Type[] values()
for (Error.Type c : Error.Type.values()) System.out.println(c);
public static Error.Type 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