public static enum UserException.ExceptionCategory extends Enum<UserException.ExceptionCategory>
| Enum Constant and Description | 
|---|
Custom  | 
DataValidation  | 
DeletePrevention  | 
Security  | 
| Modifier and Type | Method and Description | 
|---|---|
static UserException.ExceptionCategory | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static UserException.ExceptionCategory[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final UserException.ExceptionCategory Security
public static final UserException.ExceptionCategory DeletePrevention
public static final UserException.ExceptionCategory DataValidation
public static final UserException.ExceptionCategory Custom
public static UserException.ExceptionCategory[] values()
for (UserException.ExceptionCategory c : UserException.ExceptionCategory.values()) System.out.println(c);
public static UserException.ExceptionCategory 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