com.aliasi.corpus
Interface ChunkHandler
- All Superinterfaces:
- Handler, ObjectHandler<Chunking>
- All Known Implementing Classes:
- CharLmHmmChunker, CharLmRescoringChunker, ChunkerEvaluator, ChunkHandlerAdapter, SentenceEvaluator, TrainTokenShapeChunker
public interface ChunkHandler
- extends ObjectHandler<Chunking>
The ChunkHandler interface specifies a single method
for operating on a chunking. The standard use of a chunk handler
is as a visitor whose handle method is involked as a callback by
a data parser or decoder.
- Since:
- LingPipe2.1
- Version:
- 3.3
- Author:
- Bob Carpenter
|
Method Summary |
void |
handle(Chunking chunking)
Handle the specified chunking. |
handle
void handle(Chunking chunking)
- Handle the specified chunking.
- Specified by:
handle in interface ObjectHandler<Chunking>
- Parameters:
chunking - Chunking to handle.