I am using opennlp opennlp.tools.chunker.ChunkerME
implementation for finding chunks. In this class i am calling chunkAsSpans(..)
method which returns Span[]
.
So, this Span
instance has getType()
getter method which is returning types like
NP, VP etc.
Here i am wondering what type means for Span? Is it the POS?