Class IntComplementSet
java.lang.Object
net.sf.saxon.expr.sort.IntComplementSet
- All Implemented Interfaces:
IntSet
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanadd(int value) Add an integer to the setvoidclear()Clear the contents of the IntSet (making it an empty set)booleancontains(int value) Determine whether a particular integer is present in the setbooleancontainsAll(IntSet other) Test if this set is a superset of another setcopy()Create a copy of this IntSet that leaves the original unchanged.Form a new set that is the difference of this set and another set.Form a new set that is the intersection of this IntSet and another.booleanisEmpty()Determine if the set is emptyiterator()Get an iterator over the valuesCreate a copy of this IntSet that contains the same set of integers.booleanremove(int value) Remove an integer from the setintsize()Get the number of integers in the setForm a new set that is the union of this IntSet and another.
-
Constructor Details
-
IntComplementSet
-
-
Method Details
-
getExclusions
-
copy
Description copied from interface:IntSetCreate a copy of this IntSet that leaves the original unchanged. -
mutableCopy
Description copied from interface:IntSetCreate a copy of this IntSet that contains the same set of integers.- Specified by:
mutableCopyin interfaceIntSet- Returns:
- an IntSet containing the same integers. The result will not necessarily be the same class as the original. It will always be a mutable object
-
clear
-
size
-
isEmpty
-
contains
-
remove
-
add
-
iterator
Description copied from interface:IntSetGet an iterator over the values -
union
Description copied from interface:IntSetForm a new set that is the union of this IntSet and another. The result will either be an immutable object, or a newly constructed object. -
intersect
Description copied from interface:IntSetForm a new set that is the intersection of this IntSet and another. The result will either be an immutable object, or a newly constructed object. -
except
Description copied from interface:IntSetForm a new set that is the difference of this set and another set. The result will either be an immutable object, or a newly constructed object. -
containsAll
Description copied from interface:IntSetTest if this set is a superset of another set- Specified by:
containsAllin interfaceIntSet- Parameters:
other- the other set- Returns:
- true if every integer in the other set is also present in this set
-