public interface LoaderCSVStep<R extends TableRecord<R>>
Loader
API is used for configuring data loads.
The step in constructing the Loader
object where you can set the
mandatory CSV loader options.
Modifier and Type | Method and Description |
---|---|
LoaderCSVOptionsStep<R> |
fields(Collection<? extends Field<?>> fields)
Specify the the fields to be loaded into the table in the correct order.
|
LoaderCSVOptionsStep<R> |
fields(Field<?>... fields)
Specify the the fields to be loaded into the table in the correct order.
|
@Support LoaderCSVOptionsStep<R> fields(Field<?>... fields)
i
is inserted into the table field
at index i
. If fields[i] == null
, then the CSV
column is skipped.@Support LoaderCSVOptionsStep<R> fields(Collection<? extends Field<?>> fields)
i
is inserted into the table field
at index i
. If
new ArrayList(fields).get(i) == null
, then the CSV column is
skipped.Copyright © 2014. All Rights Reserved.