public static enum HandlerException.Action extends Enum<HandlerException.Action>
| Enum Constant and Description |
|---|
EXECUTION_EXCEPTION |
FAILURE_EXCEPTION |
STOP_HANDLER_CURRENT |
STOP_HANDLERS |
| Modifier and Type | Method and Description |
|---|---|
static HandlerException.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerException.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerException.Action STOP_HANDLER_CURRENT
public static final HandlerException.Action STOP_HANDLERS
public static final HandlerException.Action FAILURE_EXCEPTION
public static final HandlerException.Action EXECUTION_EXCEPTION
public static HandlerException.Action[] values()
for (HandlerException.Action c : HandlerException.Action.values()) System.out.println(c);
public static HandlerException.Action 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 © 2015. All rights reserved.