public enum TupleFailureHandling extends Enum<TupleFailureHandling>
Modifier and Type | Method and Description |
---|---|
boolean |
isRequired() |
static TupleFailureHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TupleFailureHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TupleFailureHandling IGNORE
public static final TupleFailureHandling WARN
public static final TupleFailureHandling ABORT
public static TupleFailureHandling[] values()
for (TupleFailureHandling c : TupleFailureHandling.values()) System.out.println(c);
public static TupleFailureHandling 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 nullpublic boolean isRequired()