Package eu.clarin.weblicht.wlfxb.tc.api
Interface ChunksLayer
-
- All Superinterfaces:
TextCorpusLayer
- All Known Implementing Classes:
ChunksLayerStored
public interface ChunksLayer extends TextCorpusLayer
The ChunkLayer layer represents chunk annotations on tokens. The layer specifies the tagset used for chunk categories.A chunk is consists of one or more tokens.- Author:
- Mohammad Fazleh Elahi
-
-
Method Summary
Modifier and Type Method Description ChunkaddChunk(LinkedHashMap<String,String> types, Token chunkToken)ChunkaddChunk(LinkedHashMap<String,String> types, List<Token> chunkTokens)ChunkgetChunk(int index)ChunkgetChunk(Token token)List<Chunk>getChunks(Token token)Set<String>getFoundTypes()StringgetTagset()Token[]getTokens(Chunk chunk)-
Methods inherited from interface eu.clarin.weblicht.wlfxb.tc.api.TextCorpusLayer
isEmpty, size
-
-