Uses of Interface
org.springframework.batch.item.file.transform.LineAggregator

Packages that use LineAggregator
org.springframework.batch.item.file Infrastructure implementations of io file concerns. 
org.springframework.batch.item.file.transform Infrastructure implementations of io file support transform concerns. 
 

Uses of LineAggregator in org.springframework.batch.item.file
 

Methods in org.springframework.batch.item.file with parameters of type LineAggregator
 void FlatFileItemWriter.setLineAggregator(LineAggregator<T> lineAggregator)
          Public setter for the LineAggregator.
 

Uses of LineAggregator in org.springframework.batch.item.file.transform
 

Classes in org.springframework.batch.item.file.transform that implement LineAggregator
 class DelimitedLineAggregator<T>
          A LineAggregator implementation that converts an object into a delimited list of strings.
 class ExtractorLineAggregator<T>
          An abstract LineAggregator implementation that utilizes a FieldExtractor to convert the incoming object to an array of its parts.
 class FormatterLineAggregator<T>
          A LineAggregator implementation which produces a String by aggregating the provided item via the Formatter syntax.
 class PassThroughLineAggregator<T>
          A LineAggregator implementation that simply calls Object.toString() on the given object
 class RecursiveCollectionLineAggregator<T>
          An implementation of LineAggregator that concatenates a collection of items of a common type with the system line separator.
 

Methods in org.springframework.batch.item.file.transform with parameters of type LineAggregator
 void RecursiveCollectionLineAggregator.setDelegate(LineAggregator<T> delegate)
          Public setter for the LineAggregator to use on single items, that are not Strings.
 



Copyright © 2013 SpringSource. All Rights Reserved.