public static enum CsvDestination.MissingStrategy extends Enum<CsvDestination.MissingStrategy>
Enum Constant and Description |
---|
NULL
The missing values are replaced by
null strings in the output. |
SKIP
The records with the missing values are skipped/ignored.
|
Modifier and Type | Method and Description |
---|---|
static CsvDestination.MissingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvDestination.MissingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvDestination.MissingStrategy SKIP
public static final CsvDestination.MissingStrategy NULL
null
strings in the output.public static CsvDestination.MissingStrategy[] values()
for (CsvDestination.MissingStrategy c : CsvDestination.MissingStrategy.values()) System.out.println(c);
public static CsvDestination.MissingStrategy 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 © 2010–2017 PerfCake Community. All rights reserved.