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