FlatFileReader
configured with the CSVRecordParserFactory
.public enum CSVBindingType extends Enum<CSVBindingType>
Enum Constant and Description |
---|
LIST
Deprecated.
Bind a
List of instances of the binding class. |
MAP
Deprecated.
Bind a
Map of instances of the binding class. |
SINGLE
Deprecated.
Bind a single instance of the binding class.
|
Modifier and Type | Method and Description |
---|---|
static CSVBindingType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CSVBindingType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVBindingType SINGLE
public static final CSVBindingType LIST
public static final CSVBindingType MAP
Map
of instances of the binding class.
Creates a Map
under the binding 'beanId' name, with the
Map entry keys coming from the 'keyField' name on the
CSVBinding
instance.public static CSVBindingType[] values()
for (CSVBindingType c : CSVBindingType.values()) System.out.println(c);
public static CSVBindingType 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 © 2020. All rights reserved.