com.ta.TagExtractAPI
Interface ExtractGroup

All Superinterfaces:
GenericGroup

public interface ExtractGroup
extends GenericGroup

Representation of a syntactic group.


Method Summary
 java.lang.String getGroupName()
          To obtain the type of syntactic group.
 java.util.ArrayList<java.lang.String> getInflectedForms()
          To obtain the list of inflected forms.
 java.util.ArrayList<java.lang.String> getLemmatisedForms()
          To obtain the list of lemmatised forms.
 int getNbInternalGroups()
          To obtain the number of embedded groups.
 java.util.ArrayList<java.lang.String> getPartsOfSpeech()
          To obtain the list of parts of speech: one for each word.
 java.util.ArrayList<ExtractRelation> getRelations()
          To obtain the list of the relations pertaining to the group
 java.lang.String toString()
          Out of the box printing method.
 
Methods inherited from interface com.ta.TagExtractAPI.GenericGroup
addRelation, getSignature, setSignature
 

Method Detail

getGroupName

java.lang.String getGroupName()
To obtain the type of syntactic group. Either GN or GP.


getNbInternalGroups

int getNbInternalGroups()
To obtain the number of embedded groups.


getInflectedForms

java.util.ArrayList<java.lang.String> getInflectedForms()
To obtain the list of inflected forms. Each element is a word.


getLemmatisedForms

java.util.ArrayList<java.lang.String> getLemmatisedForms()
To obtain the list of lemmatised forms. Each element is a word.


getPartsOfSpeech

java.util.ArrayList<java.lang.String> getPartsOfSpeech()
To obtain the list of parts of speech: one for each word.


getRelations

java.util.ArrayList<ExtractRelation> getRelations()
To obtain the list of the relations pertaining to the group


toString

java.lang.String toString()
Out of the box printing method.

Overrides:
toString in class java.lang.Object