public enum ExceptionAction extends java.lang.Enum<ExceptionAction>
| Enum Constant and Description |
|---|
CANCEL
abort the operation
|
IGNORE
ignore the exception and go on
|
RETRY
try the same operation again
|
| Modifier and Type | Method and Description |
|---|---|
static ExceptionAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionAction RETRY
public static final ExceptionAction CANCEL
public static final ExceptionAction IGNORE
public static ExceptionAction[] values()
for (ExceptionAction c : ExceptionAction.values()) System.out.println(c);
public static ExceptionAction 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 nullCopyright © 2015 Micro Focus GmbH. All rights reserved.