public static enum UserException.ExceptionCategory extends java.lang.Enum<UserException.ExceptionCategory>
| Enum Constant and Description |
|---|
Custom |
DataValidation |
DeletePrevention |
Security |
| Modifier and Type | Method and Description |
|---|---|
static UserException.ExceptionCategory |
valueOf(java.lang.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(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