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