Uses of Class
edu.iu.iv.modeling.tarl.util.impl.ExtendedHashSet

Packages that use ExtendedHashSet
edu.iu.iv.modeling.tarl.topic.impl   
edu.iu.iv.modeling.tarl.util.impl   
 

Uses of ExtendedHashSet in edu.iu.iv.modeling.tarl.topic.impl
 

Methods in edu.iu.iv.modeling.tarl.topic.impl that return ExtendedHashSet
 ExtendedHashSet DefaultTopic.getKeywords()
          Returns the keywords of the Topic
 

Constructors in edu.iu.iv.modeling.tarl.topic.impl with parameters of type ExtendedHashSet
DefaultTopic(int id, java.lang.String name, ExtendedHashSet keywords)
          Creates a new instance for a DefaultTopic with the specified id, name and Topic
 

Uses of ExtendedHashSet in edu.iu.iv.modeling.tarl.util.impl
 

Methods in edu.iu.iv.modeling.tarl.util.impl that return ExtendedHashSet
 ExtendedHashSet ExtendedHashSet.getRandomElements(int numElements)
          Returns the specified number of different random elements from the Set as an ExtendedHashSet.
static ExtendedHashSet ExtendedHashSet.union(java.util.Collection collection1, java.util.Collection collection2)
          Returns the union of two specified Collections as an ExtendedHashSet.
static ExtendedHashSet ExtendedHashSet.intersection(java.util.Collection collection1, java.util.Collection collection2)
          Returns the intersection of two specified Collections.
static ExtendedHashSet ExtendedHashSet.difference(java.util.Collection collection1, java.util.Collection collection2)
          Returns the difference of the two specified Collections.
static ExtendedHashSet ExtendedHashSet.partitionSet(java.util.Collection collection, int numElements)
          Partitions the specified Collection into a Collection of subsets each of a fixed specified size.