public static enum Strings.NullConcatenation extends Enum<Strings.NullConcatenation>
Strings.concat(NullConcatenation, List)| Enum Constant and Description |
|---|
IGNORE_NULL
Null values in concatenation are ignored.
|
YIELD_NULL
Null values in concatenation make the result null
|
| Modifier and Type | Method and Description |
|---|---|
static Strings.NullConcatenation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strings.NullConcatenation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Strings.NullConcatenation IGNORE_NULL
public static final Strings.NullConcatenation YIELD_NULL
public static Strings.NullConcatenation[] values()
for (Strings.NullConcatenation c : Strings.NullConcatenation.values()) System.out.println(c);
public static Strings.NullConcatenation 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 © 2021 Actian Corporation. All rights reserved.