Class ByteIterators
public final class ByteIterators extends Object
- See Also:
Iterator
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ByteIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.static class
ByteIterators.UnmodifiableBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.static class
ByteIterators.UnmodifiableIterator
An unmodifiable wrapper class for iterators.static class
ByteIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators. -
Field Summary
Fields Modifier and Type Field Description static ByteIterators.EmptyIterator
EMPTY_ITERATOR
An empty iterator. -
Method Summary
Modifier and Type Method Description static boolean
all(ByteIterator iterator, IntPredicate predicate)
static boolean
any(ByteIterator iterator, IntPredicate predicate)
static ByteIterator
asByteIterator(Iterator i)
Wraps a standard iterator into a type-specific iterator.static ByteListIterator
asByteIterator(ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.static ByteIterator
concat(ByteIterator[] a)
Concatenates all iterators contained in an array.static ByteIterator
concat(ByteIterator[] a, int offset, int length)
Concatenates a sequence of iterators contained in an array.static ByteListIterator
fromTo(byte from, byte to)
Creates a type-specific list iterator over an interval.static int
indexOf(ByteIterator iterator, IntPredicate predicate)
static ByteList
pour(ByteIterator i)
Pours an iterator, returning a type-specific list.static ByteList
pour(ByteIterator i, int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.static int
pour(ByteIterator i, ByteCollection s)
Pours an iterator into a type-specific collection.static int
pour(ByteIterator i, ByteCollection s, int max)
Pours an iterator into a type-specific collection, with a limit on the number of elements.static ByteListIterator
singleton(byte element)
Returns an immutable iterator that iterates just over the given element.static ByteBidirectionalIterator
unmodifiable(ByteBidirectionalIterator i)
Returns an unmodifiable bidirectional iterator backed by the specified bidirectional iterator.static ByteIterator
unmodifiable(ByteIterator i)
Returns an unmodifiable iterator backed by the specified iterator.static ByteListIterator
unmodifiable(ByteListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.static byte[]
unwrap(ByteIterator i)
Unwraps an iterator, returning an array.static int
unwrap(ByteIterator i, byte[] array)
Unwraps an iterator into an array.static long
unwrap(ByteIterator i, byte[][] array)
Unwraps an iterator into a big array.static long
unwrap(ByteIterator i, byte[][] array, long offset, long max)
Unwraps an iterator into a big array starting at a given offset for a given number of elements.static int
unwrap(ByteIterator i, byte[] array, int offset, int max)
Unwraps an iterator into an array starting at a given offset for a given number of elements.static byte[]
unwrap(ByteIterator i, int max)
Unwraps an iterator, returning an array, with a limit on the number of elements.static long
unwrap(ByteIterator i, ByteCollection c)
Unwraps an iterator into a type-specific collection.static int
unwrap(ByteIterator i, ByteCollection c, int max)
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.static byte[][]
unwrapBig(ByteIterator i)
Unwraps an iterator, returning a big array.static byte[][]
unwrapBig(ByteIterator i, long max)
Unwraps an iterator, returning a big array, with a limit on the number of elements.static ByteListIterator
wrap(byte[] array)
Wraps the given array into a type-specific list iterator.static ByteListIterator
wrap(byte[] array, int offset, int length)
Wraps the given part of an array into a type-specific list iterator.
-
Field Details
-
EMPTY_ITERATOR
An empty iterator. It is serializable and cloneable.The class of this objects represent an abstract empty iterator that can iterate as a type-specific (list) iterator.
-
-
Method Details
-
singleton
Returns an immutable iterator that iterates just over the given element.- Parameters:
element
- the only element to be returned by a type-specific list iterator.- Returns:
- an immutable iterator that iterates just over
element
.
-
wrap
Wraps the given part of an array into a type-specific list iterator.The type-specific list iterator returned by this method will iterate
length
times, returning consecutive elements of the given array starting from the one with indexoffset
.- Parameters:
array
- an array to wrap into a type-specific list iterator.offset
- the first element of the array to be returned.length
- the number of elements to return.- Returns:
- an iterator that will return
length
elements ofarray
starting at positionoffset
.
-
wrap
Wraps the given array into a type-specific list iterator.The type-specific list iterator returned by this method will return all elements of the given array.
- Parameters:
array
- an array to wrap into a type-specific list iterator.- Returns:
- an iterator that will the elements of
array
.
-
unwrap
Unwraps an iterator into an array starting at a given offset for a given number of elements.This method iterates over the given type-specific iterator and stores the elements returned, up to a maximum of
length
, in the given array starting atoffset
. The number of actually unwrapped elements is returned (it may be less thanmax
if the iterator emits less thanmax
elements).- Parameters:
i
- a type-specific iterator.array
- an array to contain the output of the iterator.offset
- the first element of the array to be returned.max
- the maximum number of elements to unwrap.- Returns:
- the number of elements unwrapped.
-
unwrap
Unwraps an iterator into an array.This method iterates over the given type-specific iterator and stores the elements returned in the given array. The iteration will stop when the iterator has no more elements or when the end of the array has been reached.
- Parameters:
i
- a type-specific iterator.array
- an array to contain the output of the iterator.- Returns:
- the number of elements unwrapped.
-
unwrap
Unwraps an iterator, returning an array, with a limit on the number of elements.This method iterates over the given type-specific iterator and returns an array containing the elements returned by the iterator. At most
max
elements will be returned.- Parameters:
i
- a type-specific iterator.max
- the maximum number of elements to be unwrapped.- Returns:
- an array containing the elements returned by the iterator (at most
max
).
-
unwrap
Unwraps an iterator, returning an array.This method iterates over the given type-specific iterator and returns an array containing the elements returned by the iterator.
- Parameters:
i
- a type-specific iterator.- Returns:
- an array containing the elements returned by the iterator.
-
unwrap
Unwraps an iterator into a big array starting at a given offset for a given number of elements.This method iterates over the given type-specific iterator and stores the elements returned, up to a maximum of
length
, in the given big array starting atoffset
. The number of actually unwrapped elements is returned (it may be less thanmax
if the iterator emits less thanmax
elements).- Parameters:
i
- a type-specific iterator.array
- a big array to contain the output of the iterator.offset
- the first element of the array to be returned.max
- the maximum number of elements to unwrap.- Returns:
- the number of elements unwrapped.
-
unwrap
Unwraps an iterator into a big array.This method iterates over the given type-specific iterator and stores the elements returned in the given big array. The iteration will stop when the iterator has no more elements or when the end of the array has been reached.
- Parameters:
i
- a type-specific iterator.array
- a big array to contain the output of the iterator.- Returns:
- the number of elements unwrapped.
-
unwrap
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.This method iterates over the given type-specific iterator and stores the elements returned, up to a maximum of
max
, in the given type-specific collection. The number of actually unwrapped elements is returned (it may be less thanmax
if the iterator emits less thanmax
elements).- Parameters:
i
- a type-specific iterator.c
- a type-specific collection array to contain the output of the iterator.max
- the maximum number of elements to unwrap.- Returns:
- the number of elements unwrapped. Note that this is the number of elements returned by the iterator, which is not necessarily the number of elements that have been added to the collection (because of duplicates).
-
unwrapBig
Unwraps an iterator, returning a big array, with a limit on the number of elements.This method iterates over the given type-specific iterator and returns a big array containing the elements returned by the iterator. At most
max
elements will be returned.- Parameters:
i
- a type-specific iterator.max
- the maximum number of elements to be unwrapped.- Returns:
- a big array containing the elements returned by the iterator (at most
max
).
-
unwrapBig
Unwraps an iterator, returning a big array.This method iterates over the given type-specific iterator and returns a big array containing the elements returned by the iterator.
- Parameters:
i
- a type-specific iterator.- Returns:
- a big array containing the elements returned by the iterator.
-
unwrap
Unwraps an iterator into a type-specific collection.This method iterates over the given type-specific iterator and stores the elements returned in the given type-specific collection. The returned count on the number unwrapped elements is a long, so that it will work also with very large collections.
- Parameters:
i
- a type-specific iterator.c
- a type-specific collection to contain the output of the iterator.- Returns:
- the number of elements unwrapped. Note that this is the number of elements returned by the iterator, which is not necessarily the number of elements that have been added to the collection (because of duplicates).
-
pour
Pours an iterator into a type-specific collection, with a limit on the number of elements.This method iterates over the given type-specific iterator and adds the returned elements to the given collection (up to
max
).- Parameters:
i
- a type-specific iterator.s
- a type-specific collection.max
- the maximum number of elements to be poured.- Returns:
- the number of elements poured. Note that this is the number of elements returned by the iterator, which is not necessarily the number of elements that have been added to the collection (because of duplicates).
-
pour
Pours an iterator into a type-specific collection.This method iterates over the given type-specific iterator and adds the returned elements to the given collection.
- Parameters:
i
- a type-specific iterator.s
- a type-specific collection.- Returns:
- the number of elements poured. Note that this is the number of elements returned by the iterator, which is not necessarily the number of elements that have been added to the collection (because of duplicates).
-
pour
Pours an iterator, returning a type-specific list, with a limit on the number of elements.This method iterates over the given type-specific iterator and returns a type-specific list containing the returned elements (up to
max
). Iteration on the returned list is guaranteed to produce the elements in the same order in which they appeared in the iterator.- Parameters:
i
- a type-specific iterator.max
- the maximum number of elements to be poured.- Returns:
- a type-specific list containing the returned elements, up to
max
.
-
pour
Pours an iterator, returning a type-specific list.This method iterates over the given type-specific iterator and returns a list containing the returned elements. Iteration on the returned list is guaranteed to produce the elements in the same order in which they appeared in the iterator.
- Parameters:
i
- a type-specific iterator.- Returns:
- a type-specific list containing the returned elements.
-
asByteIterator
Wraps a standard iterator into a type-specific iterator.This method wraps a standard iterator into a type-specific one which will handle the type conversions for you. Of course, any attempt to wrap an iterator returning the instances of the wrong class will generate a
ClassCastException
. The returned iterator is backed byi
: changes to one of the iterators will affect the other, too.If
i
is already type-specific, it will returned and no new object will be generated.- Parameters:
i
- an iterator.- Returns:
- a type-specific iterator backed by
i
.
-
asByteIterator
Wraps a standard list iterator into a type-specific list iterator.This method wraps a standard list iterator into a type-specific one which will handle the type conversions for you. Of course, any attempt to wrap an iterator returning the instances of the wrong class will generate a
ClassCastException
. The returned iterator is backed byi
: changes to one of the iterators will affect the other, too.If
i
is already type-specific, it will returned and no new object will be generated.- Parameters:
i
- a list iterator.- Returns:
- a type-specific list iterator backed by
i
.
-
any
-
all
-
indexOf
-
fromTo
Creates a type-specific list iterator over an interval.The type-specific list iterator returned by this method will return the elements
from
,from+1
,…,to-1
.- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a type-specific list iterator enumerating the elements from
from
toto
.
-
concat
Concatenates all iterators contained in an array.This method returns an iterator that will enumerate in order the elements returned by all iterators contained in the given array.
- Parameters:
a
- an array of iterators.- Returns:
- an iterator obtained by concatenation.
-
concat
Concatenates a sequence of iterators contained in an array.This method returns an iterator that will enumerate in order the elements returned by
a[offset]
, then those returned bya[offset + 1]
, and so on up toa[offset + length - 1]
.- Parameters:
a
- an array of iterators.offset
- the index of the first iterator to concatenate.length
- the number of iterators to concatenate.- Returns:
- an iterator obtained by concatenation of
length
elements ofa
starting atoffset
.
-
unmodifiable
Returns an unmodifiable iterator backed by the specified iterator.- Parameters:
i
- the iterator to be wrapped in an unmodifiable iterator.- Returns:
- an unmodifiable view of the specified iterator.
-
unmodifiable
Returns an unmodifiable bidirectional iterator backed by the specified bidirectional iterator.- Parameters:
i
- the bidirectional iterator to be wrapped in an unmodifiable bidirectional iterator.- Returns:
- an unmodifiable view of the specified bidirectional iterator.
-
unmodifiable
Returns an unmodifiable list iterator backed by the specified list iterator.- Parameters:
i
- the list iterator to be wrapped in an unmodifiable list iterator.- Returns:
- an unmodifiable view of the specified list iterator.
-