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