|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface LoaderCSVStep<R extends TableRecord<R>>
The Loader API is used for configuring data loads.
The step in constructing the Loader object where you can set the
mandatory CSV loader options.
| Method Summary | |
|---|---|
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. |
| Method Detail |
|---|
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.
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.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||