public enum ExceptionRuleCategory extends Enum<ExceptionRuleCategory> implements HasName
| Enum Constant and Description |
|---|
APPLICATION_EXCEPTION_RULE
An Application Exception Rule.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
USER_EXCEPTION_RULES
A user management Exception Rule that includes either engine and non-engine rules or combination of them.
|
ZONE_STOP_EXCEPTION_RULES
An Exception Rule associated with a Customer Zone.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ExceptionRuleCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionRuleCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionRuleCategory UNKNOWN
public static final ExceptionRuleCategory APPLICATION_EXCEPTION_RULE
public static final ExceptionRuleCategory USER_EXCEPTION_RULES
public static final ExceptionRuleCategory ZONE_STOP_EXCEPTION_RULES
public static ExceptionRuleCategory[] values()
for (ExceptionRuleCategory c : ExceptionRuleCategory.values()) System.out.println(c);
public static ExceptionRuleCategory 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 nullCopyright © 2023. All rights reserved.