Class IntSortedSets.SynchronizedSortedSet
- All Implemented Interfaces:
IntBidirectionalIterable
,IntCollection
,IntIterable
,IntSet
,IntSortedSet
,Serializable
,Iterable<Integer>
,Collection<Integer>
,Set<Integer>
,SortedSet<Integer>
- Enclosing class:
- IntSortedSets
public static class IntSortedSets.SynchronizedSortedSet extends IntSets.SynchronizedSet implements IntSortedSet, Serializable
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description IntComparator
comparator()
Integer
first()
Deprecated.Please use the corresponding type-specific method instead.int
firstInt()
Returns the first (lowest) element currently in this set.IntSortedSet
headSet(int to)
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.IntSortedSet
headSet(Integer to)
Deprecated.Please use the corresponding type-specific method instead.IntBidirectionalIterator
iterator()
Returns a type-specific iterator on the elements of this collection.IntBidirectionalIterator
iterator(int from)
Returns a type-specificBidirectionalIterator
on the elements in this set, starting from a given element of the domain (optional operation).Integer
last()
Deprecated.Please use the corresponding type-specific method instead.int
lastInt()
Returns the last (highest) element currently in this set.IntSortedSet
subSet(int from, int to)
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.IntSortedSet
subSet(Integer from, Integer to)
Deprecated.Please use the corresponding type-specific method instead.IntSortedSet
tailSet(int from)
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.IntSortedSet
tailSet(Integer from)
Deprecated.Please use the corresponding type-specific method instead.Methods inherited from class it.unimi.dsi.fastutil.ints.IntCollections.SynchronizedCollection
add, add, addAll, addAll, clear, contains, contains, containsAll, containsAll, equals, hashCode, isEmpty, remove, removeAll, removeAll, removeIf, retainAll, retainAll, size, toArray, toArray, toArray, toIntArray, toIntArray, toString
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toIntArray, toIntArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntSet
add, contains, rem, remove, remove
-
Method Details
-
comparator
Description copied from interface:IntSortedSet
Note that this specification strengthens the one given in
SortedSet.comparator()
.- Specified by:
comparator
in interfaceIntSortedSet
- Specified by:
comparator
in interfaceSortedSet<Integer>
-
subSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.Note that this specification strengthens the one given in
SortedSet.subSet(Object,Object)
.- Specified by:
subSet
in interfaceIntSortedSet
- See Also:
SortedSet.subSet(Object,Object)
-
headSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.Note that this specification strengthens the one given in
SortedSet.headSet(Object)
.- Specified by:
headSet
in interfaceIntSortedSet
- See Also:
SortedSet.headSet(Object)
-
tailSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.Note that this specification strengthens the one given in
SortedSet.headSet(Object)
.- Specified by:
tailSet
in interfaceIntSortedSet
- See Also:
SortedSet.tailSet(Object)
-
iterator
Description copied from interface:IntCollection
Returns a type-specific iterator on the elements of this collection.Note that this specification strengthens the one given in
Iterable.iterator()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsCollection
.- Specified by:
iterator
in interfaceCollection<Integer>
- Specified by:
iterator
in interfaceIntBidirectionalIterable
- Specified by:
iterator
in interfaceIntCollection
- Specified by:
iterator
in interfaceIntIterable
- Specified by:
iterator
in interfaceIntSet
- Specified by:
iterator
in interfaceIntSortedSet
- Specified by:
iterator
in interfaceIterable<Integer>
- Specified by:
iterator
in interfaceSet<Integer>
- Overrides:
iterator
in classIntCollections.SynchronizedCollection
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
iterator
Description copied from interface:IntSortedSet
Returns a type-specificBidirectionalIterator
on the elements in this set, starting from a given element of the domain (optional operation).This method returns a type-specific bidirectional iterator with given starting point. The starting point is any element comparable to the elements of this set (even if it does not actually belong to the set). The next element of the returned iterator is the least element of the set that is greater than the starting point (if there are no elements greater than the starting point,
hasNext()
will returnfalse
). The previous element of the returned iterator is the greatest element of the set that is smaller than or equal to the starting point (if there are no elements smaller than or equal to the starting point,hasPrevious()
will returnfalse
).Note that passing the last element of the set as starting point and calling
previous()
you can traverse the entire set in reverse order.- Specified by:
iterator
in interfaceIntSortedSet
- Parameters:
from
- an element to start from.- Returns:
- a bidirectional iterator on the element in this set, starting at the given element.
-
firstInt
public int firstInt()Description copied from interface:IntSortedSet
Returns the first (lowest) element currently in this set.- Specified by:
firstInt
in interfaceIntSortedSet
- See Also:
SortedSet.first()
-
lastInt
public int lastInt()Description copied from interface:IntSortedSet
Returns the last (highest) element currently in this set.- Specified by:
lastInt
in interfaceIntSortedSet
- See Also:
SortedSet.last()
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
first
in interfaceIntSortedSet
- Specified by:
first
in interfaceSortedSet<Integer>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
last
in interfaceIntSortedSet
- Specified by:
last
in interfaceSortedSet<Integer>
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSet
in interfaceIntSortedSet
- Specified by:
subSet
in interfaceSortedSet<Integer>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSet
in interfaceIntSortedSet
- Specified by:
headSet
in interfaceSortedSet<Integer>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSet
in interfaceIntSortedSet
- Specified by:
tailSet
in interfaceSortedSet<Integer>
-