Uses of Class
javatools.datatypes.IntSet

Packages that use IntSet
javatools.datatypes   
 

Uses of IntSet in javatools.datatypes
 

Subclasses of IntSet in javatools.datatypes
 class IdPriorityQueue
          This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
 

Methods in javatools.datatypes that return IntSet
 IntSet IntSet.enhancedBy(int addMe)
          Adds addMe, returns THIS
 IntSet IntSet.enhancedBy(IntSet addMe)
          Adds all elements, returns THIS
static IntSet IntSet.of(int... initial)
          Creates a new IntSet from initial values.
 IntSet IntSet.shrunkBy(int addMe)
          Removes the given element, returns THIS
 IntSet IntSet.shrunkBy(IntSet addMe)
          Removes the given elements, returns THIS
 

Methods in javatools.datatypes with parameters of type IntSet
 boolean IntSet.addAll(IntSet s)
          Adds all elements
 IntSet IntSet.enhancedBy(IntSet addMe)
          Adds all elements, returns THIS
 boolean IntSet.removeAll(IntSet c)
          Removes all elements in c
 void IntSet.setTo(IntSet copy)
          Overwrites the current IntSet with the given one
 IntSet IntSet.shrunkBy(IntSet addMe)
          Removes the given elements, returns THIS
 

Constructors in javatools.datatypes with parameters of type IntSet
IntSet(IntSet copy)
          Creates a new IntSet by copying the given set