Package it.unimi.dsi.fastutil.shorts
Class AbstractShortSortedSet
java.lang.Object
java.util.AbstractCollection<java.lang.Short>
it.unimi.dsi.fastutil.shorts.AbstractShortCollection
it.unimi.dsi.fastutil.shorts.AbstractShortSet
it.unimi.dsi.fastutil.shorts.AbstractShortSortedSet
- All Implemented Interfaces:
ShortBidirectionalIterable,ShortCollection,ShortIterable,ShortSet,ShortSortedSet,java.lang.Cloneable,java.lang.Iterable<java.lang.Short>,java.util.Collection<java.lang.Short>,java.util.Set<java.lang.Short>,java.util.SortedSet<java.lang.Short>
- Direct Known Subclasses:
ShortAVLTreeSet,ShortLinkedOpenCustomHashSet,ShortLinkedOpenHashSet,ShortRBTreeSet
public abstract class AbstractShortSortedSet extends AbstractShortSet implements ShortSortedSet
An abstract class providing basic methods for sorted sets implementing a
type-specific interface.
-
Method Summary
Modifier and Type Method Description abstract ShortBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortSet
equals, hashCode, rem, removeMethods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toShortArray, toShortArray, toStringMethods inherited from class java.util.AbstractCollection
clear, isEmpty, size, toArray, toArrayMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
toArrayMethods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.shorts.ShortCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toShortArray, toShortArrayMethods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterable
forEach, forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.shorts.ShortSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.shorts.ShortSortedSet
comparator, first, firstShort, headSet, headSet, iterator, last, lastShort, spliterator, subSet, subSet, tailSet, tailSet
-
Method Details
-
iterator
Description copied from interface:ShortCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfacejava.util.Collection<java.lang.Short>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Short>- Specified by:
iteratorin interfacejava.util.Set<java.lang.Short>- Specified by:
iteratorin interfaceShortBidirectionalIterable- Specified by:
iteratorin interfaceShortCollection- Specified by:
iteratorin interfaceShortIterable- Specified by:
iteratorin interfaceShortSet- Specified by:
iteratorin interfaceShortSortedSet- Specified by:
iteratorin classAbstractShortSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-