public interface LoaderJSONStep<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 JSON loader options.
| Modifier and Type | Method and Description | 
|---|---|
| LoaderJSONOptionsStep<R> | fields(java.util.Collection<? extends Field<?>> fields)Specify the the fields to be loaded into the table in the correct order. | 
| LoaderJSONOptionsStep<R> | fields(Field<?>... fields)Specify the the fields to be loaded into the table in the correct order. | 
@Support LoaderJSONOptionsStep<R> fields(Field<?>... fields)
i is inserted into the table field
 at index i. If fields[i] == null, then the JSON
 column is skipped.@Support LoaderJSONOptionsStep<R> fields(java.util.Collection<? extends Field<?>> fields)
i is inserted into the table field
 at index i. If
 new ArrayList(fields).get(i) == null, then the JSON column is
 skipped.Copyright © 2015. All Rights Reserved.