protected static enum CaughtException.ExceptionHandlingFlow extends Enum<CaughtException.ExceptionHandlingFlow>
Enum Constant and Description |
---|
ABORT |
DROP_CAUSE |
HANDLED |
MARK_HANDLED |
RETHROW |
THROW |
Modifier and Type | Method and Description |
---|---|
static CaughtException.ExceptionHandlingFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaughtException.ExceptionHandlingFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaughtException.ExceptionHandlingFlow HANDLED
public static final CaughtException.ExceptionHandlingFlow MARK_HANDLED
public static final CaughtException.ExceptionHandlingFlow DROP_CAUSE
public static final CaughtException.ExceptionHandlingFlow ABORT
public static final CaughtException.ExceptionHandlingFlow RETHROW
public static final CaughtException.ExceptionHandlingFlow THROW
public static CaughtException.ExceptionHandlingFlow[] values()
for (CaughtException.ExceptionHandlingFlow c : CaughtException.ExceptionHandlingFlow.values()) System.out.println(c);
public static CaughtException.ExceptionHandlingFlow 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 © 2012 Seam Framework. All Rights Reserved.