public enum ErrorCategory extends Enum<ErrorCategory>
| Enum Constant and Description | 
|---|
| DUPLICATE_KEYA duplicate key error | 
| EXECUTION_TIMEOUTAn execution timeout error | 
| UNCATEGORIZEDAn uncategorized error | 
| Modifier and Type | Method and Description | 
|---|---|
| static ErrorCategory | fromErrorCode(int code)Translate an error code into an error category | 
| static ErrorCategory | valueOf(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(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 nullpublic static ErrorCategory fromErrorCode(int code)
code - the error code