Uses of Interface
org.springframework.batch.infrastructure.item.file.builder.FlatFileItemReaderBuilder.DelimitedSpec
Packages that use FlatFileItemReaderBuilder.DelimitedSpec
Package
Description
Builders for file item readers and writers.
-
Uses of FlatFileItemReaderBuilder.DelimitedSpec in org.springframework.batch.infrastructure.item.file.builder
Methods in org.springframework.batch.infrastructure.item.file.builder that return FlatFileItemReaderBuilder.DelimitedSpecModifier and TypeMethodDescriptionFlatFileItemReaderBuilder.DelimitedSpec.addIncludedField(int field) Add an index to the list of fields to be included from the fileDefine the delimiter for the file.FlatFileItemReaderBuilder.DelimitedSpec.fieldSetFactory(FieldSetFactory fieldSetFactory) A factory for creating the resultingFieldSet.FlatFileItemReaderBuilder.DelimitedSpec.includedFields(Integer... fields) A list of indices of the fields within a delimited file to be includedNames of each of the fields within the fields that are returned in the order they occur within the delimited file.FlatFileItemReaderBuilder.DelimitedSpec.quoteCharacter(char quoteCharacter) Define the character used to quote fields.FlatFileItemReaderBuilder.DelimitedSpec.strict(boolean strict) If true (the default) then the number of tokens in line must match the number of tokens defined (byRange, columns, etc.) inLineTokenizer.Method parameters in org.springframework.batch.infrastructure.item.file.builder with type arguments of type FlatFileItemReaderBuilder.DelimitedSpecModifier and TypeMethodDescriptionFlatFileItemReaderBuilder.delimited(Consumer<FlatFileItemReaderBuilder.DelimitedSpec<T>> config) Configure aFlatFileItemReaderBuilder.DelimitedSpecusing a lambda.