| Package | Description | 
|---|---|
| org.mathIT.algebra | Provides classes for algebra and linear algebra. | 
| Modifier and Type | Method and Description | 
|---|---|
| EnumSet<E> | EnumSet. copy()Creates and returns a clone copy of this set. | 
| EnumSet<E> | EnumSet. intersect(ArrayList<? extends EnumSet<? extends E>> sets)Returns the intersection of this set and the specified set list. | 
| EnumSet<E> | EnumSet. intersect(EnumSet<? extends E> set)Returns the intersection of this set and the specified set. | 
| EnumSet<E> | EnumSet. minus(E element)Returns the set difference of this set minus the specified element. | 
| EnumSet<E> | EnumSet. minus(EnumSet<E> minuend)Returns the set difference of this set minus the specified minuend. | 
| EnumSet<E> | EnumSet. unify(ArrayList<? extends EnumSet<? extends E>> sets)Returns the union of this set and the specified set list. | 
| EnumSet<E> | EnumSet. unify(EnumSet<? extends E> set)Returns the union of this set and the specified set. | 
| Modifier and Type | Method and Description | 
|---|---|
| static <E extends Enum<E>> | EnumSet. partitions(EnumSet<E> set)Returns a list of partitions of the specified set. | 
| static <E extends Enum<E>> | EnumSet. subsets(EnumSet<E> set,
       int k)Returns the k-element subsets of a set s,
  i.e., each k-element combination of s,
  stored in an array list. | 
| ArrayList<EnumSet<E>> | EnumSet. subsets(int k)Returns the k-element subsets of this set,
  i.e., each of its k-element combination, stored in an array list. | 
| Modifier and Type | Method and Description | 
|---|---|
| EnumSet<E> | EnumSet. intersect(EnumSet<? extends E> set)Returns the intersection of this set and the specified set. | 
| EnumSet<E> | EnumSet. minus(EnumSet<E> minuend)Returns the set difference of this set minus the specified minuend. | 
| static <E extends Enum<E>> | EnumSet. partitions(EnumSet<E> set)Returns a list of partitions of the specified set. | 
| static <E extends Enum<E>> | EnumSet. subsets(EnumSet<E> set,
       int k)Returns the k-element subsets of a set s,
  i.e., each k-element combination of s,
  stored in an array list. | 
| EnumSet<E> | EnumSet. unify(EnumSet<? extends E> set)Returns the union of this set and the specified set. | 
| Modifier and Type | Method and Description | 
|---|---|
| EnumSet<E> | EnumSet. intersect(ArrayList<? extends EnumSet<? extends E>> sets)Returns the intersection of this set and the specified set list. | 
| EnumSet<E> | EnumSet. unify(ArrayList<? extends EnumSet<? extends E>> sets)Returns the union of this set and the specified set list. |