Package it.unimi.dsi.fastutil.bytes
Class AbstractByteSortedSet
java.lang.Object
java.util.AbstractCollection<java.lang.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,java.lang.Cloneable,java.lang.Iterable<java.lang.Byte>,java.util.Collection<java.lang.Byte>,java.util.Set<java.lang.Byte>,java.util.SortedSet<java.lang.Byte>
- Direct Known Subclasses:
ByteAVLTreeSet,ByteLinkedOpenCustomHashSet,ByteLinkedOpenHashSet,ByteRBTreeSet
public abstract class AbstractByteSortedSet extends AbstractByteSet implements ByteSortedSet
An abstract class providing basic methods for sorted sets implementing a
type-specific interface.
-
Method Summary
Modifier and Type Method Description abstract ByteBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteSet
equals, hashCode, rem, removeMethods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toByteArray, toByteArray, 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 it.unimi.dsi.fastutil.bytes.ByteCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toByteArray, toByteArrayMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
comparator, first, firstByte, headSet, headSet, iterator, last, lastByte, spliterator, subSet, subSet, tailSet, tailSetMethods 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, toArray
-
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 interfacejava.util.Collection<java.lang.Byte>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Byte>- Specified by:
iteratorin interfacejava.util.Set<java.lang.Byte>- Specified by:
iteratorin classAbstractByteSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-