Package net.sf.saxon.expr.sort
Class IntComplementSet
java.lang.Object
net.sf.saxon.expr.sort.IntComplementSet
- All Implemented Interfaces:
IntSet
An immutable integer set containing all int values except those in an excluded set
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(int value) Add an integer to the setvoid
clear()
Clear the contents of the IntSet (making it an empty set)boolean
contains
(int value) Determine whether a particular integer is present in the setboolean
containsAll
(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.boolean
isEmpty()
Determine if the set is emptyiterator()
Get an iterator over the valuesCreate a copy of this IntSet that contains the same set of integers.boolean
remove
(int value) Remove an integer from the setint
size()
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:IntSet
Create a copy of this IntSet that leaves the original unchanged. -
mutableCopy
Description copied from interface:IntSet
Create a copy of this IntSet that contains the same set of integers.- Specified by:
mutableCopy
in 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
public void clear()Description copied from interface:IntSet
Clear the contents of the IntSet (making it an empty set) -
size
public int size()Description copied from interface:IntSet
Get the number of integers in the set -
isEmpty
public boolean isEmpty()Description copied from interface:IntSet
Determine if the set is empty -
contains
public boolean contains(int value) Description copied from interface:IntSet
Determine whether a particular integer is present in the set -
remove
public boolean remove(int value) Description copied from interface:IntSet
Remove an integer from the set -
add
public boolean add(int value) Description copied from interface:IntSet
Add an integer to the set -
iterator
Description copied from interface:IntSet
Get an iterator over the values -
union
Description copied from interface:IntSet
Form 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:IntSet
Form 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:IntSet
Form 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:IntSet
Test if this set is a superset of another set- Specified by:
containsAll
in interfaceIntSet
- Parameters:
other
- the other set- Returns:
- true if every integer in the other set is also present in this set
-