ByteIterable, LazyByteIterable, PrimitiveIterableCollectBooleanToByteIterable, CollectByteIterable, CollectByteToByteIterable, CollectCharToByteIterable, CollectDoubleToByteIterable, CollectFloatToByteIterable, CollectIntToByteIterable, CollectLongToByteIterable, CollectShortToByteIterable, LazyByteIterableAdapter, ReverseByteIterable, SelectByteIterable, TapByteIterablepublic abstract class AbstractLazyByteIterable extends Object implements LazyByteIterable
| Constructor | Description |
|---|---|
AbstractLazyByteIterable() |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
allSatisfy(BytePredicate predicate) |
Returns true if all of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
anySatisfy(BytePredicate predicate) |
Returns true if any of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
void |
appendString(Appendable appendable) |
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String separator) |
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
Prints a string representation of this collection onto the given
Appendable. |
LazyByteIterable |
asLazy() |
Returns a LazyByteIterable adapter wrapping the source ByteIterable.
|
double |
average() |
|
RichIterable<ByteIterable> |
chunk(int size) |
Partitions elements in fixed size chunks.
|
<V> LazyIterable<V> |
collect(ByteToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(ByteToBooleanFunction function) |
|
LazyByteIterable |
collectByte(ByteToByteFunction function) |
|
LazyCharIterable |
collectChar(ByteToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(ByteToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(ByteToFloatFunction function) |
|
LazyIntIterable |
collectInt(ByteToIntFunction function) |
|
LazyLongIterable |
collectLong(ByteToLongFunction function) |
|
LazyShortIterable |
collectShort(ByteToShortFunction function) |
|
boolean |
contains(byte value) |
Returns true if the value is contained in the ByteIterable, and false if it is not.
|
boolean |
containsAll(byte... source) |
Returns true if the all of the values specified in the source array are contained
in the ByteIterable, and false if they are not.
|
boolean |
containsAll(ByteIterable source) |
Returns true if the all of the values specified in the source ByteIterable are contained
in the ByteIterable, and false if they are not.
|
int |
count(BytePredicate predicate) |
Returns a count of the number of elements in the ByteIterable that return true for the
specified predicate.
|
byte |
detectIfNone(BytePredicate predicate,
byte ifNone) |
|
<V> LazyIterable<V> |
flatCollect(ByteToObjectFunction<? extends Iterable<V>> function) |
|
void |
forEach(ByteProcedure procedure) |
Applies the ByteProcedure to each element in the ByteIterable.
|
<T> T |
injectInto(T injectedValue,
ObjectByteToObjectFunction<? super T,? extends T> function) |
|
boolean |
isEmpty() |
Returns true if this iterable has zero items.
|
String |
makeString() |
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space). |
String |
makeString(String separator) |
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String). |
String |
makeString(String start,
String separator,
String end) |
Returns a string representation of this collection with the elements separated by the specified
separator and enclosed between the start and end strings.
|
byte |
max() |
|
byte |
maxIfEmpty(byte ifEmpty) |
|
double |
median() |
|
byte |
min() |
|
byte |
minIfEmpty(byte ifEmpty) |
|
boolean |
noneSatisfy(BytePredicate predicate) |
Returns true if none of the elements in the ByteIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
notEmpty() |
The English equivalent of !this.isEmpty()
|
LazyByteIterable |
reject(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return false for the specified predicate.
|
LazyByteIterable |
select(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return true for the specified predicate.
|
int |
size() |
Returns the number of items in this iterable.
|
long |
sum() |
|
LazyByteIterable |
tap(ByteProcedure procedure) |
|
byte[] |
toArray() |
Converts the ByteIterable to a primitive byte array.
|
MutableByteBag |
toBag() |
Converts the ByteIterable to a new MutableByteBag.
|
MutableByteList |
toList() |
Converts the ByteIterable to a new MutableByteList.
|
MutableByteSet |
toSet() |
Converts the ByteIterable to a new MutableByteSet.
|
byte[] |
toSortedArray() |
|
MutableByteList |
toSortedList() |
|
String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
averageIfEmpty, byteIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, each, flatCollect, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatisticspublic void forEach(ByteProcedure procedure)
ByteIterableforEach in interface ByteIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic String toString()
PrimitiveIterable
Assert.assertEquals("[]", IntLists.mutable.empty().toString());
Assert.assertEquals("[1]", IntLists.mutable.with(1).toString());
Assert.assertEquals("[1, 2, 3]", IntLists.mutable.with(1, 2, 3).toString());
toString in interface PrimitiveIterabletoString in class ObjectAbstractCollection.toString()public boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablepublic String makeString(String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablepublic String makeString(String start, String separator, String end)
PrimitiveIterablemakeString in interface PrimitiveIterablepublic void appendString(Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic boolean contains(byte value)
ByteIterablecontains in interface ByteIterablepublic boolean containsAll(byte... source)
ByteIterablecontainsAll in interface ByteIterablepublic boolean containsAll(ByteIterable source)
ByteIterablecontainsAll in interface ByteIterablepublic LazyByteIterable select(BytePredicate predicate)
ByteIterableselect in interface ByteIterableselect in interface LazyByteIterablepublic LazyByteIterable reject(BytePredicate predicate)
ByteIterablereject in interface ByteIterablereject in interface LazyByteIterablepublic LazyByteIterable tap(ByteProcedure procedure)
tap in interface ByteIterabletap in interface LazyByteIterablepublic <V> LazyIterable<V> collect(ByteToObjectFunction<? extends V> function)
ByteIterablecollect in interface ByteIterablecollect in interface LazyByteIterablepublic <V> LazyIterable<V> flatCollect(ByteToObjectFunction<? extends Iterable<V>> function)
flatCollect in interface LazyByteIterablepublic LazyBooleanIterable collectBoolean(ByteToBooleanFunction function)
collectBoolean in interface LazyByteIterablepublic LazyByteIterable collectByte(ByteToByteFunction function)
collectByte in interface LazyByteIterablepublic LazyCharIterable collectChar(ByteToCharFunction function)
collectChar in interface LazyByteIterablepublic LazyShortIterable collectShort(ByteToShortFunction function)
collectShort in interface LazyByteIterablepublic LazyIntIterable collectInt(ByteToIntFunction function)
collectInt in interface LazyByteIterablepublic LazyFloatIterable collectFloat(ByteToFloatFunction function)
collectFloat in interface LazyByteIterablepublic LazyLongIterable collectLong(ByteToLongFunction function)
collectLong in interface LazyByteIterablepublic LazyDoubleIterable collectDouble(ByteToDoubleFunction function)
collectDouble in interface LazyByteIterablepublic byte detectIfNone(BytePredicate predicate, byte ifNone)
detectIfNone in interface ByteIterablepublic int count(BytePredicate predicate)
ByteIterablecount in interface ByteIterablepublic boolean anySatisfy(BytePredicate predicate)
ByteIterableanySatisfy in interface ByteIterablepublic boolean allSatisfy(BytePredicate predicate)
ByteIterableallSatisfy in interface ByteIterablepublic boolean noneSatisfy(BytePredicate predicate)
ByteIterablenoneSatisfy in interface ByteIterablepublic <T> T injectInto(T injectedValue,
ObjectByteToObjectFunction<? super T,? extends T> function)
injectInto in interface ByteIterablepublic RichIterable<ByteIterable> chunk(int size)
ByteIterablechunk in interface ByteIterablesize - the number of elements per chunkRichIterable containing ByteIterables of size size, except the last will be
truncated if the elements don't divide evenly.public byte[] toArray()
ByteIterabletoArray in interface ByteIterablepublic MutableByteList toList()
ByteIterabletoList in interface ByteIterablepublic MutableByteSet toSet()
ByteIterabletoSet in interface ByteIterablepublic MutableByteBag toBag()
ByteIterabletoBag in interface ByteIterablepublic long sum()
sum in interface ByteIterablepublic byte max()
max in interface ByteIterablepublic byte maxIfEmpty(byte ifEmpty)
maxIfEmpty in interface ByteIterablepublic byte min()
min in interface ByteIterablepublic byte minIfEmpty(byte ifEmpty)
minIfEmpty in interface ByteIterablepublic double average()
average in interface ByteIterablepublic double median()
median in interface ByteIterablepublic byte[] toSortedArray()
toSortedArray in interface ByteIterablepublic MutableByteList toSortedList()
toSortedList in interface ByteIterablepublic LazyByteIterable asLazy()
ByteIterableasLazy in interface ByteIterableCopyright © 2004–2019. All rights reserved.