LBJ2.parse
Interface Parser

All Known Implementing Classes:
ChildrenFromVectors, ColumnFormat, FeatureVectorParser, FoldParser, LineByLine, PlainToTokenParser, POSBracketToVector, POSBracketToWord, SentenceSplitter, WordSplitter

public interface Parser

Any parser that extends this interface can be sent to a Learner for batch training.

See Also:
Learner

Method Summary
 java.lang.Object next()
          Use this method to retrieve the next object parsed from the raw input data.
 void reset()
          Sets this parser back to the beginning of the raw data.
 

Method Detail

next

java.lang.Object next()
Use this method to retrieve the next object parsed from the raw input data.

Returns:
The next object parsed from the input data.

reset

void reset()
Sets this parser back to the beginning of the raw data.