Package | Description |
---|---|
org.openimaj.text.nlp.textpipe.annotations | |
org.openimaj.text.nlp.textpipe.annotators |
Modifier and Type | Class and Description |
---|---|
class |
NamedEntityAnnotation
A Nameed Entity Annotation.
|
class |
PhraseAnnotation
An annotation representing a phrase as per the Penn Treebank.
|
class |
POSAnnotation
Part of Speech Annotation based on the Penn treebank.
|
class |
RawTextAnnotation
Text encapsulated as an
TextPipeAnnotation so that it may be
annotated. |
class |
SentenceAnnotation
SentenceAnnotation is an extension of RawTextAnnotation as
its function is to encapsulate a substring of raw text. |
class |
TokenAnnotation
A
TokenAnnotation represents a single token generated by a tokeniser. |
Modifier and Type | Method and Description |
---|---|
<T extends TextPipeAnnotation> |
TextPipeAnnotation.addAllAnnotations(Collection<T> annotationCollection) |
<T extends TextPipeAnnotation> |
TextPipeAnnotation.addAnnotation(T annotation) |
<T extends TextPipeAnnotation> |
TextPipeAnnotation.getAnnotationsFor(Class<T> key) |
Modifier and Type | Method and Description |
---|---|
Set<Class<? extends TextPipeAnnotation>> |
TextPipeAnnotation.getAnnotationKeyList() |
Modifier and Type | Method and Description |
---|---|
static boolean |
AnnotationUtils.allHaveAnnotation(List<? extends TextPipeAnnotation> toBeChecked,
Class<? extends TextPipeAnnotation> check)
Check if a
TextPipeAnnotation has been added to all members in a list of TextPipeAnnotation . |
static boolean |
AnnotationUtils.allHaveAnnotation(List<? extends TextPipeAnnotation> toBeChecked,
Class<? extends TextPipeAnnotation> check)
Check if a
TextPipeAnnotation has been added to all members in a list of TextPipeAnnotation . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractTextPipeAnnotator<INPUT_ANNOTATION extends TextPipeAnnotation> |