Class AbstractByteSortedSet
java.lang.Object
java.util.AbstractCollection<Byte>
it.unimi.dsi.fastutil.bytes.AbstractByteCollection
it.unimi.dsi.fastutil.bytes.AbstractByteSet
it.unimi.dsi.fastutil.bytes.AbstractByteSortedSet
- All Implemented Interfaces:
ByteBidirectionalIterable, ByteCollection, ByteIterable, ByteSet, ByteSortedSet, Cloneable, Iterable<Byte>, Collection<Byte>, SequencedCollection<Byte>, SequencedSet<Byte>, Set<Byte>, SortedSet<Byte>
- Direct Known Subclasses:
ByteAVLTreeSet, ByteLinkedOpenCustomHashSet, ByteLinkedOpenHashSet, ByteRBTreeSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
Method Summary
Modifier and TypeMethodDescriptionabstract ByteBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class AbstractByteSet
equals, hashCode, rem, removeMethods inherited from class AbstractByteCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toByteArray, toByteArray, toStringMethods inherited from interface ByteCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toByteArray, toByteArrayMethods inherited from interface ByteIterable
forEach, forEach, forEachMethods inherited from interface ByteSortedSet
comparator, first, firstByte, headSet, headSet, iterator, last, lastByte, spliterator, subSet, subSet, tailSet, tailSetMethods inherited from interface Collection
toArrayMethods inherited from interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Method Details
-
iterator
Description copied from interface:ByteCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceByteBidirectionalIterable- Specified by:
iteratorin interfaceByteCollection- Specified by:
iteratorin interfaceByteIterable- Specified by:
iteratorin interfaceByteSet- Specified by:
iteratorin interfaceByteSortedSet- Specified by:
iteratorin interfaceCollection<Byte>- Specified by:
iteratorin interfaceIterable<Byte>- Specified by:
iteratorin interfaceSet<Byte>- Specified by:
iteratorin classAbstractByteSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-