Package opennlp.tools.formats.masc
Class MascToken
java.lang.Object
opennlp.tools.util.Span
opennlp.tools.formats.masc.MascToken
- All Implemented Interfaces:
- Serializable,- Comparable<Span>
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class opennlp.tools.util.SpancompareTo, contains, contains, crosses, equals, getCoveredText, getEnd, getProb, getStart, getType, hashCode, intersects, length, spansToStrings, spansToStrings, startsWith, toString, trim
- 
Constructor Details- 
MascTokenInitializes aMascTokenwhich may combine multiple quarks.- Parameters:
- s- The start of the token in the corpus file. Must be equal to or greater than- 0.
- e- The end of the token in the corpus file. Must be equal to or greater than- 0and be greater than- s.
- pennId- The ID of the token as assigned by the Penn stand-off annotation.
- pos- The POS-tag.
- base- The base form.
- quarks- The- array of Quarkscontained in the token.
- Throws:
- IllegalArgumentException- Thrown if one of the parameters are invalid.
 
 
- 
- 
Method Details- 
getTokenIdpublic int getTokenId()- Returns:
- Retrieves the ID of the token.
 
- 
getBase- Returns:
- Retrieves the base form.
 
- 
getPos- Returns:
- Retrieves the POS tag.
 
- 
getQuarks- Returns:
- Retrieves quarks of the token.
 
 
-