Class IntSortedSets.SynchronizedSortedSet
- java.lang.Object
-
- it.unimi.dsi.fastutil.ints.IntCollections.SynchronizedCollection
-
- it.unimi.dsi.fastutil.ints.IntSets.SynchronizedSet
-
- it.unimi.dsi.fastutil.ints.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
A synchronized wrapper class for sorted sets.- See Also:
- Serialized Form
-
-
Method Summary
Modifier and Type Method Description IntComparatorcomparator()Integerfirst()Deprecated.Please use the corresponding type-specific method instead.intfirstInt()Returns the first (lowest) element currently in this set.IntSortedSetheadSet(int to)Returns a view of the portion of this sorted set whose elements are strictly less thantoElement.IntSortedSetheadSet(Integer to)Deprecated.Please use the corresponding type-specific method instead.IntBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.IntBidirectionalIteratoriterator(int from)Returns a type-specificBidirectionalIteratoron the elements in this set, starting from a given element of the domain (optional operation).Integerlast()Deprecated.Please use the corresponding type-specific method instead.intlastInt()Returns the last (highest) element currently in this set.IntSortedSetsubSet(int from, int to)Returns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.IntSortedSetsubSet(Integer from, Integer to)Deprecated.Please use the corresponding type-specific method instead.IntSortedSettailSet(int from)Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.IntSortedSettailSet(Integer from)Deprecated.Please use the corresponding type-specific method instead.-
Methods inherited from class it.unimi.dsi.fastutil.ints.IntSets.SynchronizedSet
rem, remove
-
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 java.util.Collection
parallelStream, stream, toArray
-
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.IntIterable
forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntSet
add, contains, rem, remove, remove
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
spliterator
-
-
-
-
Method Detail
-
comparator
public IntComparator comparator()
Description copied from interface:IntSortedSetNote that this specification strengthens the one given in
SortedSet.comparator().- Specified by:
comparatorin interfaceIntSortedSet- Specified by:
comparatorin interfaceSortedSet<Integer>
-
subSet
public IntSortedSet subSet(int from, int to)
Description copied from interface:IntSortedSetReturns 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:
subSetin interfaceIntSortedSet- See Also:
SortedSet.subSet(Object,Object)
-
headSet
public IntSortedSet headSet(int to)
Description copied from interface:IntSortedSetReturns 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:
headSetin interfaceIntSortedSet- See Also:
SortedSet.headSet(Object)
-
tailSet
public IntSortedSet tailSet(int from)
Description copied from interface:IntSortedSetReturns 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:
tailSetin interfaceIntSortedSet- See Also:
SortedSet.tailSet(Object)
-
iterator
public IntBidirectionalIterator iterator()
Description copied from interface:IntCollectionReturns 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:
iteratorin interfaceCollection<Integer>- Specified by:
iteratorin interfaceIntBidirectionalIterable- Specified by:
iteratorin interfaceIntCollection- Specified by:
iteratorin interfaceIntIterable- Specified by:
iteratorin interfaceIntSet- Specified by:
iteratorin interfaceIntSortedSet- Specified by:
iteratorin interfaceIterable<Integer>- Specified by:
iteratorin interfaceSet<Integer>- Overrides:
iteratorin classIntCollections.SynchronizedCollection- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
iterator
public IntBidirectionalIterator iterator(int from)
Description copied from interface:IntSortedSetReturns a type-specificBidirectionalIteratoron 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:
iteratorin 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:IntSortedSetReturns the first (lowest) element currently in this set.- Specified by:
firstIntin interfaceIntSortedSet- See Also:
SortedSet.first()
-
lastInt
public int lastInt()
Description copied from interface:IntSortedSetReturns the last (highest) element currently in this set.- Specified by:
lastIntin interfaceIntSortedSet- See Also:
SortedSet.last()
-
first
@Deprecated public Integer first()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
firstin interfaceIntSortedSet- Specified by:
firstin interfaceSortedSet<Integer>
-
last
@Deprecated public Integer last()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
lastin interfaceIntSortedSet- Specified by:
lastin interfaceSortedSet<Integer>
-
subSet
@Deprecated public IntSortedSet subSet(Integer from, Integer to)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSetin interfaceIntSortedSet- Specified by:
subSetin interfaceSortedSet<Integer>
-
headSet
@Deprecated public IntSortedSet headSet(Integer to)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSetin interfaceIntSortedSet- Specified by:
headSetin interfaceSortedSet<Integer>
-
tailSet
@Deprecated public IntSortedSet tailSet(Integer from)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSetin interfaceIntSortedSet- Specified by:
tailSetin interfaceSortedSet<Integer>
-
-