public enum CSVReaderNullFieldIndicator extends Enum<CSVReaderNullFieldIndicator>
| Enum Constant and Description |
|---|
BOTH |
EMPTY_QUOTES |
EMPTY_SEPARATORS |
NEITHER |
| Modifier and Type | Method and Description |
|---|---|
static CSVReaderNullFieldIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVReaderNullFieldIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVReaderNullFieldIndicator EMPTY_SEPARATORS
public static final CSVReaderNullFieldIndicator EMPTY_QUOTES
public static final CSVReaderNullFieldIndicator BOTH
public static final CSVReaderNullFieldIndicator NEITHER
public static CSVReaderNullFieldIndicator[] values()
for (CSVReaderNullFieldIndicator c : CSVReaderNullFieldIndicator.values()) System.out.println(c);
public static CSVReaderNullFieldIndicator 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 © 2018 Liquibase.org. All rights reserved.