public interface AnnotationFS extends AnnotationBaseFS
Modifier and Type | Method and Description |
---|---|
int |
getBegin()
Get the start position of the annotation as character offset into the text.
|
String |
getCoveredText()
Get the text covered by an annotation as a string.
|
int |
getEnd()
Get the end position of the annotation as character offset into the text.
|
getView
clone, equals, getBooleanValue, getByteValue, getCAS, getDoubleValue, getFeatureValue, getFeatureValueAsString, getFloatValue, getIntValue, getLongValue, getShortValue, getStringValue, getType, hashCode, setBooleanValue, setByteValue, setDoubleValue, setFeatureValue, setFeatureValueFromString, setFloatValue, setIntValue, setLongValue, setShortValue, setStringValue
int getBegin()
0
, the offset of the first character in the text.int getEnd()
(getEnd()-getBegin()) == getCoveredText().length()
.String getCoveredText()
docText
is your document
text and annot
an annotation, then
annot.getCoveredText().equals(docText.substring(annot.getBegin(),
annot.getEnd()))
.Copyright © 2006–2017 The Apache Software Foundation. All rights reserved.