edu.stanford.nlp.process
Interface ListProcessor

All Known Implementing Classes:
AbstractListProcessor, PTBEscapingProcessor, StripTagsProcessor, WordToSentenceProcessor, WordToTaggedWordProcessor

public interface ListProcessor

An interface for things that operate on a List. This is seen as a lighter weight and more general interface than the Processor interface for documents.

Author:
Teg Grenager

Method Summary
 List process(List list)
          Take a List (including a Sentence) of input, and return a List that has been processed in some way.
 

Method Detail

process

List process(List list)
Take a List (including a Sentence) of input, and return a List that has been processed in some way.



Stanford NLP Group