Uses of Class
com.opencloud.util.IntSet
-
Packages that use IntSet Package Description com.opencloud.util Defines utility classes that are common to more than one OpenCloud product. -
-
Uses of IntSet in com.opencloud.util
Methods in com.opencloud.util that return IntSet Modifier and Type Method Description IntSet
IntSet. addAll(int[] vals)
Add an array of values to the set.IntSet
IntSet. addAll(IntSet other)
Add the values from anotherIntSet
to this set.IntSet
IntSet. clone()
Performs a deep copy of the set.static IntSet
IntSet. complement(IntSet superset, IntSet subset)
Return a new set that is the complement of a subset within a superset.static IntSet
IntSet. copyOf(int[] from)
Construct a new set that contains the given values.static IntSet
IntSet. copyOf(Set<Integer> fromSet)
Construct a new set that contains a copy of the values in the given set.static IntSet
IntSet. emptySet()
Construct a new empty set.static IntSet
IntSet. intersection(IntSet setA, IntSet setB)
Return a new set that is the intersection of two other sets.static IntSet
IntSet. of(int... values)
Construct a set with the given values.IntSet
IntSet. removeAll(int[] vals)
Remove an array of values to the set.IntSet
IntSet. removeAll(IntSet other)
Remove all values in the providedIntSet
from this set.static IntSet
IntSet. union(IntSet setA, IntSet setB)
Return a new set that is the union of two other sets.Methods in com.opencloud.util with parameters of type IntSet Modifier and Type Method Description IntSet
IntSet. addAll(IntSet other)
Add the values from anotherIntSet
to this set.static IntSet
IntSet. complement(IntSet superset, IntSet subset)
Return a new set that is the complement of a subset within a superset.boolean
IntSet. containsAll(IntSet other)
Check if the given values are contained in this set.static IntSet
IntSet. intersection(IntSet setA, IntSet setB)
Return a new set that is the intersection of two other sets.boolean
IntSet. isSubsetOf(IntSet superset)
Determines whether this IntSet is a subset of the given IntSet.boolean
IntSet. isSupersetOf(IntSet subset)
Determines whether this IntSet is a superset of the given IntSet.IntSet
IntSet. removeAll(IntSet other)
Remove all values in the providedIntSet
from this set.static IntSet
IntSet. union(IntSet setA, IntSet setB)
Return a new set that is the union of two other sets.Constructors in com.opencloud.util with parameters of type IntSet Constructor Description IntSet(IntSet fromSet)
Construct a copy of an IntSet.
-