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

All Known Implementing Classes:
AbstractLineTokenizer, DelimitedLineTokenizer, FixedLengthTokenizer, PrefixMatchingCompositeLineTokenizer

public interface LineTokenizer

Interface that is used by framework to split string obtained typically from a file into tokens.

Author:
tomas.slanina

Method Summary
 FieldSet tokenize(String line)
          Yields the tokens resulting from the splitting of the supplied line.
 

Method Detail

tokenize

FieldSet tokenize(String line)
Yields the tokens resulting from the splitting of the supplied line.

Parameters:
line - the line to be tokenized (can be null)
Returns:
the resulting tokens


Copyright © 2009 SpringSource. All Rights Reserved.