public static enum LoadValidationError.Severity extends java.lang.Enum<LoadValidationError.Severity>
Enum Constant and Description |
---|
FATAL
The FATAL.
|
NON_FATAL
The NO n_ fatal.
|
UNKNOWN
The UNKNOWN.
|
Modifier and Type | Method and Description |
---|---|
static LoadValidationError.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoadValidationError.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadValidationError.Severity FATAL
public static final LoadValidationError.Severity NON_FATAL
public static final LoadValidationError.Severity UNKNOWN
public static LoadValidationError.Severity[] values()
for (LoadValidationError.Severity c : LoadValidationError.Severity.values()) System.out.println(c);
public static LoadValidationError.Severity 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