public static enum ErrorHandlingStrategy.Result extends Enum<ErrorHandlingStrategy.Result>
| Enum Constant and Description |
|---|
Failure |
ProcessException |
Retry |
| Modifier and Type | Method and Description |
|---|---|
static ErrorHandlingStrategy.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorHandlingStrategy.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorHandlingStrategy.Result ProcessException
public static final ErrorHandlingStrategy.Result Failure
public static final ErrorHandlingStrategy.Result Retry
public static ErrorHandlingStrategy.Result[] values()
for (ErrorHandlingStrategy.Result c : ErrorHandlingStrategy.Result.values()) System.out.println(c);
public static ErrorHandlingStrategy.Result 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 © 2017 Apache NiFi Project. All rights reserved.