Package it.unimi.dsi.fastutil.bytes
Class ByteCollections.IterableCollection
java.lang.Object
java.util.AbstractCollection<java.lang.Byte>
it.unimi.dsi.fastutil.bytes.AbstractByteCollection
it.unimi.dsi.fastutil.bytes.ByteCollections.IterableCollection
- All Implemented Interfaces:
ByteCollection,it.unimi.dsi.fastutil.bytes.ByteIterable,java.io.Serializable,java.lang.Iterable<java.lang.Byte>,java.util.Collection<java.lang.Byte>
- Enclosing class:
- ByteCollections
public static class ByteCollections.IterableCollection extends AbstractByteCollection implements java.io.Serializable
A collection wrapper class for iterables.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description it.unimi.dsi.fastutil.ints.IntIteratorintIterator()Returns a widened primitive iterator on the elements of this collection.it.unimi.dsi.fastutil.ints.IntSpliteratorintSpliterator()Returns widened primitive spliterator on the elements of this collection.booleanisEmpty()it.unimi.dsi.fastutil.bytes.ByteIteratoriterator()Returns a type-specific iterator on the elements of this collection.intsize()it.unimi.dsi.fastutil.bytes.ByteSpliteratorspliterator()Returns a type-specific spliterator on the elements of this collection.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, rem, remove, removeAll, removeAll, retainAll, retainAll, toArray, toByteArray, toByteArray, toStringMethods inherited from class java.util.AbstractCollection
clear, toArray, toArrayMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
intParallelStream, intStream, parallelStream, removeIf, removeIf, removeIf, streamMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach, forEachMethods inherited from interface java.util.Collection
clear, equals, hashCode, toArray, toArray, toArray
-
Method Details
-
size
public int size()- Specified by:
sizein interfacejava.util.Collection<java.lang.Byte>- Specified by:
sizein classjava.util.AbstractCollection<java.lang.Byte>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfacejava.util.Collection<java.lang.Byte>- Overrides:
isEmptyin classjava.util.AbstractCollection<java.lang.Byte>
-
iterator
public it.unimi.dsi.fastutil.bytes.ByteIterator iterator()Description copied from interface:ByteCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceByteCollection- Specified by:
iteratorin interfaceit.unimi.dsi.fastutil.bytes.ByteIterable- Specified by:
iteratorin interfacejava.util.Collection<java.lang.Byte>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Byte>- Specified by:
iteratorin classAbstractByteCollection- Returns:
- a type-specific iterator on the elements of this collection.
-
spliterator
public it.unimi.dsi.fastutil.bytes.ByteSpliterator spliterator()Description copied from interface:ByteCollectionReturns a type-specific spliterator on the elements of this collection.See
Collection.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfaceByteCollection- Specified by:
spliteratorin interfaceit.unimi.dsi.fastutil.bytes.ByteIterable- Specified by:
spliteratorin interfacejava.util.Collection<java.lang.Byte>- Specified by:
spliteratorin interfacejava.lang.Iterable<java.lang.Byte>- Returns:
- a type-specific spliterator on the elements of this collection.
-
intIterator
public it.unimi.dsi.fastutil.ints.IntIterator intIterator()Description copied from interface:ByteCollectionReturns a widened primitive iterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive iterators, of which there are only
int,long, anddouble.- Specified by:
intIteratorin interfaceByteCollection- Specified by:
intIteratorin interfaceit.unimi.dsi.fastutil.bytes.ByteIterable- Returns:
- a widened primitive iterator on the elements of this collection.
-
intSpliterator
public it.unimi.dsi.fastutil.ints.IntSpliterator intSpliterator()Description copied from interface:ByteCollectionReturns widened primitive spliterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive spliterators, of which there are only
int,long, anddouble.- Specified by:
intSpliteratorin interfaceByteCollection- Specified by:
intSpliteratorin interfaceit.unimi.dsi.fastutil.bytes.ByteIterable- Returns:
- a widened primitive spliterator on the elements of this collection.
-