edu.stanford.nlp.process
Interface Processor

All Known Implementing Classes:
AnswerConstructor, CollectionProcessor, Lowercaser, NumberFilter, SentenceBoundaryDetector, StoplistFilter

public interface Processor


Method Summary
 Collection process(Collection in)
          Converts a Collection to a different Collection, by transforming or filtering the original Collection.
 

Method Detail

process

public Collection process(Collection in)
Converts a Collection to a different Collection, by transforming or filtering the original Collection. For example, a parser that implements Processor could convert a Collection of Sentences to a Collection of Trees.



Stanford NLP Group