public static enum JoinOptions.NullHandlingBehavior extends Enum<JoinOptions.NullHandlingBehavior>
| Enum Constant and Description |
|---|
EMIT_NULL
A null in any input results in a null in the output.
|
REPLACE
Nulls in inputs are replaced with the replacement string.
|
SKIP
Nulls in inputs are skipped.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
JoinOptions.NullHandlingBehavior |
intern() |
String |
toString() |
static JoinOptions.NullHandlingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinOptions.NullHandlingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinOptions.NullHandlingBehavior EMIT_NULL
public static final JoinOptions.NullHandlingBehavior SKIP
public static final JoinOptions.NullHandlingBehavior REPLACE
public static JoinOptions.NullHandlingBehavior[] values()
for (JoinOptions.NullHandlingBehavior c : JoinOptions.NullHandlingBehavior.values()) System.out.println(c);
public static JoinOptions.NullHandlingBehavior 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 JoinOptions.NullHandlingBehavior intern()
public String toString()
toString in class Enum<JoinOptions.NullHandlingBehavior>Copyright © 2022. All rights reserved.