public static enum FilterOptions.NullSelectionBehavior extends Enum<FilterOptions.NullSelectionBehavior>
| Enum Constant and Description |
|---|
DROP
the corresponding filtered value will be removed in the output
|
EMIT_NULL
the corresponding filtered value will be null in the output
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
FilterOptions.NullSelectionBehavior |
intern() |
String |
toString() |
static FilterOptions.NullSelectionBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOptions.NullSelectionBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOptions.NullSelectionBehavior DROP
public static final FilterOptions.NullSelectionBehavior EMIT_NULL
public static FilterOptions.NullSelectionBehavior[] values()
for (FilterOptions.NullSelectionBehavior c : FilterOptions.NullSelectionBehavior.values()) System.out.println(c);
public static FilterOptions.NullSelectionBehavior 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 FilterOptions.NullSelectionBehavior intern()
public String toString()
toString in class Enum<FilterOptions.NullSelectionBehavior>Copyright © 2021. All rights reserved.