Uses of Class
edu.illinois.cs.cogcomp.lbj.coref.util.aux.Pair

Packages that use Pair
edu.illinois.cs.cogcomp.lbj.coref.features   
edu.illinois.cs.cogcomp.lbj.coref.ir.docs   
edu.illinois.cs.cogcomp.lbj.coref.ir.solutions   
edu.illinois.cs.cogcomp.lbj.coref.util.aux   
 

Uses of Pair in edu.illinois.cs.cogcomp.lbj.coref.features
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.features that return types with arguments of type Pair
static java.util.List<Pair<java.lang.String,java.lang.String>> AlignedTokenFeatures.getWNAlignedPreModifierPairs(CExample ex)
          Aligns each word a in the first mention before its head to each word b in the second mention's extent that is aligned to a according to AlignedTokenFeatures.aligned(java.lang.String, java.lang.String).
 

Method parameters in edu.illinois.cs.cogcomp.lbj.coref.features with type arguments of type Pair
static java.lang.String[] AlignedTokenFeatures.getWNAlignedPairRelations(java.util.List<Pair<java.lang.String,java.lang.String>> pairs)
          Computes the relations between pairs of words.
 

Uses of Pair in edu.illinois.cs.cogcomp.lbj.coref.ir.docs
 

Fields in edu.illinois.cs.cogcomp.lbj.coref.ir.docs with type parameters of type Pair
private  java.util.Map<Pair<Mention,Mention>,CExample> DocBase.m_cExMap
           
private  java.util.Map<Pair<java.lang.Integer,java.lang.Integer>,Pair<java.util.List<Mention>,java.util.List<Mention>>> DocBase.m_sentenceMentionsPair
           
private  java.util.Map<Pair<java.lang.Integer,java.lang.Integer>,Pair<java.util.List<Mention>,java.util.List<Mention>>> DocBase.m_sentenceMentionsPair
           
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.ir.docs that return Pair
 Pair<java.util.List<Mention>,java.util.List<Mention>> DocBase.getMentionsInSentences(int s1, int s2)
           
 Pair<java.util.List<Mention>,java.util.List<Mention>> Doc.getMentionsInSentences(int s1, int s2)
          Gets a pair of lists of mentions, one for each of the two specified sentences.
 

Uses of Pair in edu.illinois.cs.cogcomp.lbj.coref.ir.solutions
 

Fields in edu.illinois.cs.cogcomp.lbj.coref.ir.solutions with type parameters of type Pair
private  java.util.Map<Pair<T,T>,java.util.List<java.lang.String>> ChainSolution.m_edgeLabels
           
private  java.util.List<Pair<T,T>> ChainSolution.m_edges
           
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.ir.solutions that return types with arguments of type Pair
 java.util.List<Pair<T,T>> ChainSolution.getEdges()
          Gets the edges.
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.ir.solutions with parameters of type Pair
 java.util.List<java.lang.String> ChainSolution.getEdgeLabelsFor(Pair<T,T> p)
          Gets the edges for a pair of objects.
 

Uses of Pair in edu.illinois.cs.cogcomp.lbj.coref.util.aux
 

Subclasses of Pair in edu.illinois.cs.cogcomp.lbj.coref.util.aux
 class CompPair<A extends Comparable<A>,B extends Comparable<B>>
          Although Pair implements Comparable, it is only comparable if A and B implement Comparable -- if they do not, in the future, Exceptions may be thrown.
 class SamePair<T>
          A Pair that requires both members to be of the same type.
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.util.aux that return Pair
static
<S,T> Pair<S,T>
Pair.create(S _a, T _b)