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

Packages that use LineTokenizer
org.springframework.batch.item.file.mapping Infrastructure implementations of io file support mapping concerns. 
org.springframework.batch.item.file.transform Infrastructure implementations of io file support transform concerns. 
org.springframework.batch.sample.domain.trade   
 

Uses of LineTokenizer in org.springframework.batch.item.file.mapping
 

Methods in org.springframework.batch.item.file.mapping with parameters of type LineTokenizer
 void DefaultLineMapper.setLineTokenizer(LineTokenizer tokenizer)
           
 

Method parameters in org.springframework.batch.item.file.mapping with type arguments of type LineTokenizer
 void PatternMatchingCompositeLineMapper.setTokenizers(Map<String,LineTokenizer> tokenizers)
           
 

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

Classes in org.springframework.batch.item.file.transform that implement LineTokenizer
 class AbstractLineTokenizer
          Abstract class handling common concerns of various LineTokenizer implementations such as dealing with names and actual construction of FieldSet
 class DelimitedLineTokenizer
          A LineTokenizer implementation that splits the input String on a configurable delimiter.
 class FixedLengthTokenizer
          Tokenizer used to process data obtained from files with fixed-length format.
 class PatternMatchingCompositeLineTokenizer
          A LineTokenizer implementation that stores a mapping of String patterns to delegate LineTokenizers.
 

Method parameters in org.springframework.batch.item.file.transform with type arguments of type LineTokenizer
 void PatternMatchingCompositeLineTokenizer.setTokenizers(Map<String,LineTokenizer> tokenizers)
           
 

Uses of LineTokenizer in org.springframework.batch.sample.domain.trade
 

Classes in org.springframework.batch.sample.domain.trade that implement LineTokenizer
 class CompositeCustomerUpdateLineTokenizer
          Composite LineTokenizer that delegates the tokenization of a line to one of two potential tokenizers.
 

Methods in org.springframework.batch.sample.domain.trade with parameters of type LineTokenizer
 void CompositeCustomerUpdateLineTokenizer.setCustomerTokenizer(LineTokenizer customerTokenizer)
          Set the LineTokenizer that will be used to tokenize any lines that begin with A, U, or D, and are thus a customer operation.
 void CompositeCustomerUpdateLineTokenizer.setFooterTokenizer(LineTokenizer footerTokenizer)
          Set the LineTokenizer that will be used to tokenize any lines that being with F and is thus a footer record.
 



Copyright © 2009 SpringSource. All Rights Reserved.