public enum ExceptionHandlingFlow extends Enum<ExceptionHandlingFlow>
Enum Constant and Description |
---|
ABORT |
HANDLED |
HANDLED_AND_CONTINUE |
SKIP_CAUSE |
THROW |
THROW_ORIGINAL |
Modifier and Type | Method and Description |
---|---|
static ExceptionHandlingFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionHandlingFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionHandlingFlow HANDLED
public static final ExceptionHandlingFlow HANDLED_AND_CONTINUE
public static final ExceptionHandlingFlow SKIP_CAUSE
public static final ExceptionHandlingFlow ABORT
public static final ExceptionHandlingFlow THROW_ORIGINAL
public static final ExceptionHandlingFlow THROW
public static ExceptionHandlingFlow[] values()
for (ExceptionHandlingFlow c : ExceptionHandlingFlow.values()) System.out.println(c);
public static 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 © 2016 The Apache Software Foundation. All rights reserved.