Package edu.fiu.jtlex

Class CompoundTerm

java.lang.Object
edu.fiu.jtlex.CompoundTerm
All Implemented Interfaces:
IANode, ICompoundTerm

public class CompoundTerm
extends java.lang.Object
implements ICompoundTerm
Author:
arada002
  • Nested Class Summary

    Nested classes/interfaces inherited from interface edu.fiu.jtlex.ICompoundTerm

    ICompoundTerm.Label
  • Constructor Summary

    Constructors 
    Constructor Description
    CompoundTerm​(int id, ICompoundTerm.Label[] labels, java.lang.String lemma, edu.fiu.jtlex.data.ITimex.TimexType timexType, int begin, int end, java.lang.String text, ITerm.PartOfSpeech pos, int elementID, java.lang.String tense, java.lang.String aspect, java.lang.String timexText, java.lang.String duration, Term[] terms)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getAspect()
    the aspectual facet (telicity) of the main event.
    int getBegin()
    chracter begins on
    java.lang.String getDuration()
    the durational facet of the main event.
    int getElementID()
    number of node
    int getEnd()
    character ends on
    int getId()
    id of the anansi; may not be negative
    ICompoundTerm.Label[] getLabels()
    Tags category
    java.lang.String getLemma()
    indicates the ‘head’ or the main term in the noun phrase.
    ITerm.PartOfSpeech getPos()
    part of speech
    java.lang.String getTense()
    past present future
    Term[] getTerms()
    represented as a Contains relation.
    java.lang.String getText()
    raw text
    java.lang.String getTimexText()
    raw text
    edu.fiu.jtlex.data.ITimex.TimexType getTimexType()
    Duration
    java.lang.String getVoice()
    Tags category

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CompoundTerm

      public CompoundTerm​(int id, ICompoundTerm.Label[] labels, java.lang.String lemma, edu.fiu.jtlex.data.ITimex.TimexType timexType, int begin, int end, java.lang.String text, ITerm.PartOfSpeech pos, int elementID, java.lang.String tense, java.lang.String aspect, java.lang.String timexText, java.lang.String duration, Term[] terms)
      Parameters:
      id - id of the anansi; may not be negative
      labels - Tags category
      lemma - indicates the ‘head’ or the main term in the noun phrase.
      timexType - Duration
      begin - character it begins
      end - character it ends
      text - raw text
      pos - part of speech
      elementID - node number
      tense - present past future
      aspect - the aspectual facet (telicity) of the main event.
      timexText -
      duration - the durational facet of the main event.
      terms - represented as a Contains relation.
  • Method Details