public static enum ErrorCode.Category extends Enum<ErrorCode.Category>
Enum Constant and Description |
---|
FATAL |
RECOVERABLE |
Modifier and Type | Method and Description |
---|---|
static ErrorCode.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode.Category FATAL
public static final ErrorCode.Category RECOVERABLE
public static ErrorCode.Category[] values()
for (ErrorCode.Category c : ErrorCode.Category.values()) System.out.println(c);
public static ErrorCode.Category valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null