Uses of Class
hultig.sumo.ChunkTag

Packages that use ChunkTag
hultig.sumo This is the library's core package, containing the fundamental classes for handling text, namely Word, Sentence, and Text
 

Uses of ChunkTag in hultig.sumo
 

Fields in hultig.sumo declared as ChunkTag
protected  ChunkTag ChunkMark.chtag
          The chunk's part-of-speech label.
 ChunkTag Word.CHTAG
           
 

Methods in hultig.sumo that return ChunkTag
static ChunkTag ChunkTag.parse(String sctag)
           
static ChunkTag ChunkTag.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ChunkTag[] ChunkTag.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in hultig.sumo with parameters of type ChunkTag
 void ChunkMark.set(int a, int b, ChunkTag tag)
           
 

Constructors in hultig.sumo with parameters of type ChunkTag
ChunkMark(int a, int b, ChunkTag tag)