public static enum ErrorHandler.RESULT extends java.lang.Enum<ErrorHandler.RESULT>
| Enum Constant and Description |
|---|
FAIL
If the
FAIL state is chosen, the process will throw the exception and therefore the process stops
un-continuable. |
IGNORE
If the
IGNORE state is chosen, the process will continue with next processing unit without
throwing the error. |
| Modifier and Type | Method and Description |
|---|---|
static ErrorHandler.RESULT |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorHandler.RESULT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorHandler.RESULT FAIL
FAIL state is chosen, the process will throw the exception and therefore the process stops
un-continuable.public static final ErrorHandler.RESULT IGNORE
IGNORE state is chosen, the process will continue with next processing unit without
throwing the error.public static ErrorHandler.RESULT[] values()
for (ErrorHandler.RESULT c : ErrorHandler.RESULT.values()) System.out.println(c);
public static ErrorHandler.RESULT 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 © 2018 SAP SE. All Rights Reserved.