public enum ErrorCategory extends java.lang.Enum<ErrorCategory>
Enum Constant and Description |
---|
DUPLICATE_KEY
A duplicate key error
|
EXECUTION_TIMEOUT
An execution timeout error
|
UNCATEGORIZED
An uncategorized error
|
Modifier and Type | Method and Description |
---|---|
static ErrorCategory |
fromErrorCode(int code)
Translate an error code into an error category
|
static ErrorCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCategory UNCATEGORIZED
public static final ErrorCategory DUPLICATE_KEY
public static final ErrorCategory EXECUTION_TIMEOUT
public static ErrorCategory[] values()
for (ErrorCategory c : ErrorCategory.values()) System.out.println(c);
public static ErrorCategory 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 static ErrorCategory fromErrorCode(int code)
code
- the error codeCopyright © 2010 - 2020 Adobe. All Rights Reserved