Uses of Class
org.eml.MMAX2.annotation.query.MMAX2QueryResultTuple

Packages that use MMAX2QueryResultTuple
org.eml.MMAX2.annotation.markables   
org.eml.MMAX2.annotation.query   
org.eml.MMAX2.api   
 

Uses of MMAX2QueryResultTuple in org.eml.MMAX2.annotation.markables
 

Methods in org.eml.MMAX2.annotation.markables with parameters of type MMAX2QueryResultTuple
static boolean MarkableHelper.before(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 appears before t2, false otherwise.
static boolean MarkableHelper.beforeStrict(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 appears before t2, false otherwise.
static boolean MarkableHelper.during(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 starts at the same time as or after t2 starts, and t1 ends at the same time as or before t2 ends, false otherwise.
static boolean MarkableHelper.duringStrict(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 starts at the same time as or after t2 starts, and t1 ends at the same time as or before t2 ends, and if t1 and t2 are not identical,false otherwise.
static boolean MarkableHelper.equals(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 and t2 span the same sequence of discourse elements, false otherwise.
static boolean MarkableHelper.finishes(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 ends at the same time as t2 ends, and starts at the same time as or after t2 starts, false otherwise.
static boolean MarkableHelper.finishesStrict(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 ends at the same time as t2 ends, and t1 starts after t2 starts, false otherwise.
static boolean MarkableHelper.meets(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 ends directly before t2 begins (no overlap), false otherwise.
static boolean MarkableHelper.overlaps_left(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
           
static boolean MarkableHelper.overlaps_right(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 starts before t2 starts and t1 ends after t2 starts but before t2 ends, false otherwise.
static boolean MarkableHelper.spans(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 and t2 start and end at the same positions regardless of discontinuity false otherwise.
static boolean MarkableHelper.starts(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 starts at the same time as t2 starts, and t1 ends at the same time as or before t2 ends, false otherwise.
static boolean MarkableHelper.startsStrict(MMAX2QueryResultTuple t1, MMAX2QueryResultTuple t2, int list1ColSpec, int list2ColSpec)
          This returns true if t1 starts at the same time as t2 starts, and t1 ends before t2 ends, false otherwise.
 

Uses of MMAX2QueryResultTuple in org.eml.MMAX2.annotation.query
 

Methods in org.eml.MMAX2.annotation.query that return MMAX2QueryResultTuple
 MMAX2QueryResultTuple MMAX2QueryResultList.getTupleAtIndex(int index)
          This method returns the MMAX2QueryResultTuple at list position index.
 

Methods in org.eml.MMAX2.annotation.query with parameters of type MMAX2QueryResultTuple
 void MMAX2QueryResultList.addSingleTuple(MMAX2QueryResultTuple tuple1)
          This method adds a new copy of the the supplied tuple to this.
 void MMAX2QueryResultList.mergeAndAdd(MMAX2QueryResultTuple tuple1, MMAX2QueryResultTuple tuple2, int mergeMode)
          This method merges two result tuples into a new one, and adds the new tuple to this.
 

Constructors in org.eml.MMAX2.annotation.query with parameters of type MMAX2QueryResultTuple
MMAX2QueryResultTuple(MMAX2QueryResultTuple toClone)
           
 

Uses of MMAX2QueryResultTuple in org.eml.MMAX2.api
 

Methods in org.eml.MMAX2.api that return MMAX2QueryResultTuple
 MMAX2QueryResultTuple QueryResultListAPI.getTupleAtIndex(int listIndex)
          (API) Returns the MMAX2QueryResultTuple at index listIndex.