Uses of Class
cluster.Term

Packages that use Term
cluster Classes that deal with the unsupervised clustering. 
Util Lots of classes that are used throughout the engine, and could possibly be used in another project. 
 

Uses of Term in cluster
 

Methods in cluster that return Term
 Term Phrase.get(int arg0)
           
 Term Phrase.getTerm(int j)
           
static Term Term.makeTerm(java.lang.String s)
          Factory method; use to create Terms.
This factory allows us to easily check if two words are equal
 

Methods in cluster that return types with arguments of type Term
 java.util.List<Term> Phrase.getCombinedOverlap(Phrase set2)
          Assuming this set is in front
 java.util.List<java.util.List<Term>> Phrase.getPhrases()
          Gets all list of terms that describe this cluster
Containing any of the list of terms is equivalent to containing this Phrase (ie.
 java.util.List<Term> Phrase.getTerms()
           
 java.util.Iterator<Term> Phrase.iterator()
           
 

Methods in cluster with parameters of type Term
 boolean Phrase.add(Term arg0)
           
 int Term.compareTo(Term arg0)
           
 

Method parameters in cluster with type arguments of type Term
 void Phrase.addAlternativePhrase(java.util.List<Term> ts)
          Add an alternative phrase, which is sufficient to containing all phrases held by this Phrase
 void Phrase.setTerms(java.util.List<Term> terms)
           
 

Constructor parameters in cluster with type arguments of type Term
Phrase(java.util.List<Term> combinedOverlap)
          Constructor based on just the terms of the primary phrase
 

Uses of Term in Util
 

Methods in Util with parameters of type Term
static boolean BoostChecker.isBoosted(int cat, Term word)