Uses of Interface
org.springframework.batch.item.file.transform.LineAggregator
Packages that use LineAggregator
Package
Description
Infrastructure implementations of io file concerns.
Builders for file item readers and writers.
Infrastructure implementations of io file support transform concerns.
-
Uses of LineAggregator in org.springframework.batch.item.file
Fields in org.springframework.batch.item.file declared as LineAggregatorMethods in org.springframework.batch.item.file with parameters of type LineAggregatorModifier and TypeMethodDescriptionvoidFlatFileItemWriter.setLineAggregator(LineAggregator<T> lineAggregator) Public setter for theLineAggregator. -
Uses of LineAggregator in org.springframework.batch.item.file.builder
Methods in org.springframework.batch.item.file.builder with parameters of type LineAggregatorModifier and TypeMethodDescriptionFlatFileItemWriterBuilder.lineAggregator(LineAggregator<T> lineAggregator) Line aggregator used to build the String version of each item. -
Uses of LineAggregator in org.springframework.batch.item.file.transform
Classes in org.springframework.batch.item.file.transform that implement LineAggregatorModifier and TypeClassDescriptionclassALineAggregatorimplementation that converts an object into a delimited list of strings.classAn abstractLineAggregatorimplementation that utilizes aFieldExtractorto convert the incoming object to an array of its parts.classALineAggregatorimplementation which produces a String by aggregating the provided item via theFormattersyntax.classALineAggregatorimplementation that simply callsObject.toString()on the given objectclassAn implementation ofLineAggregatorthat concatenates a collection of items of a common type with a line separator.Methods in org.springframework.batch.item.file.transform with parameters of type LineAggregatorModifier and TypeMethodDescriptionvoidRecursiveCollectionLineAggregator.setDelegate(LineAggregator<T> delegate) Public setter for theLineAggregatorto use on single items, that are not Strings.