Package it.unimi.dsi.fastutil.bytes
Interface ByteSet
-
- All Superinterfaces:
ByteCollection,ByteIterable,Collection<Byte>,Iterable<Byte>,Set<Byte>
- All Known Subinterfaces:
ByteSortedSet
- All Known Implementing Classes:
AbstractByteSet,AbstractByteSortedSet,ByteArraySet,ByteAVLTreeSet,ByteLinkedOpenCustomHashSet,ByteLinkedOpenHashSet,ByteOpenCustomHashSet,ByteOpenHashSet,ByteRBTreeSet,ByteSets.EmptySet,ByteSets.Singleton,ByteSets.SynchronizedSet,ByteSets.UnmodifiableSet,ByteSortedSets.EmptySet,ByteSortedSets.Singleton,ByteSortedSets.SynchronizedSortedSet,ByteSortedSets.UnmodifiableSortedSet
public interface ByteSet extends ByteCollection, Set<Byte>
A type-specificSet; provides some additional methods that use polymorphism to avoid (un)boxing.Additionally, this interface strengthens (again)
iterator().- See Also:
Set
-
-
Method Summary
Modifier and Type Method Description default booleanadd(Byte o)Deprecated.Please use the corresponding type-specific method instead.default booleancontains(Object o)Deprecated.Please use the corresponding type-specific method instead.ByteIteratoriterator()Returns a type-specific iterator on the elements of this set.default booleanrem(byte k)Deprecated.Please useremove()instead.booleanremove(byte k)Removes an element from this set.default booleanremove(Object o)Deprecated.Please use the corresponding type-specific method instead.-
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toByteArray, toByteArray
-
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach
-
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
-
-
-
Method Detail
-
iterator
ByteIterator iterator()
Returns a type-specific iterator on the elements of this set.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 extendsSet.- Specified by:
iteratorin interfaceByteCollection- Specified by:
iteratorin interfaceByteIterable- Specified by:
iteratorin interfaceCollection<Byte>- Specified by:
iteratorin interfaceIterable<Byte>- Specified by:
iteratorin interfaceSet<Byte>- Returns:
- a type-specific iterator on the elements of this set.
- See Also:
Iterable.iterator()
-
remove
boolean remove(byte k)
Removes an element from this set.Note that the corresponding method of a type-specific collection is
rem(). This unfortunate situation is caused by the clash with the similarly named index-based method in theListinterface.- See Also:
Collection.remove(Object)
-
remove
@Deprecated default boolean remove(Object o)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
removein interfaceByteCollection- Specified by:
removein interfaceCollection<Byte>- Specified by:
removein interfaceSet<Byte>
-
add
@Deprecated default boolean add(Byte o)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
addin interfaceByteCollection- Specified by:
addin interfaceCollection<Byte>- Specified by:
addin interfaceSet<Byte>
-
contains
@Deprecated default boolean contains(Object o)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
containsin interfaceByteCollection- Specified by:
containsin interfaceCollection<Byte>- Specified by:
containsin interfaceSet<Byte>
-
rem
@Deprecated default boolean rem(byte k)
Deprecated.Please useremove()instead.Removes an element from this set.This method is inherited from the type-specific collection this type-specific set is based on, but it should not used as this interface reinstates
remove()as removal method.- Specified by:
remin interfaceByteCollection- See Also:
Collection.remove(Object)
-
-