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. 
org.springframework.batch.sample.domain.order.internal   
 

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.
 

Uses of LineAggregator in org.springframework.batch.sample.domain.order.internal
 

Classes in org.springframework.batch.sample.domain.order.internal that implement LineAggregator
 class OrderLineAggregator
          Converts Order object to a list of strings.
 

Method parameters in org.springframework.batch.sample.domain.order.internal with type arguments of type LineAggregator
 void OrderLineAggregator.setAggregators(Map<String,LineAggregator<Object>> aggregators)
          Set aggregators for all types of lines in the output file
 



Copyright © 2009 SpringSource. All Rights Reserved.