LazyShortIterable, PrimitiveIterable, ShortIterableCollectBooleanToShortIterable, CollectByteToShortIterable, CollectCharToShortIterable, CollectDoubleToShortIterable, CollectFloatToShortIterable, CollectIntToShortIterable, CollectLongToShortIterable, CollectShortIterable, CollectShortToShortIterable, LazyShortIterableAdapter, ReverseShortIterable, SelectShortIterable, TapShortIterablepublic abstract class AbstractLazyShortIterable extends java.lang.Object implements LazyShortIterable
| Constructor | Description |
|---|---|
AbstractLazyShortIterable() |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
allSatisfy(ShortPredicate predicate) |
Returns true if all of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
anySatisfy(ShortPredicate predicate) |
Returns true if any of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
void |
appendString(java.lang.Appendable appendable) |
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(java.lang.Appendable appendable,
java.lang.String separator) |
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end) |
Prints a string representation of this collection onto the given
Appendable. |
LazyShortIterable |
asLazy() |
Returns a LazyShortIterable adapter wrapping the source ShortIterable.
|
double |
average() |
|
RichIterable<ShortIterable> |
chunk(int size) |
Partitions elements in fixed size chunks.
|
<V> LazyIterable<V> |
collect(ShortToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(ShortToBooleanFunction function) |
|
LazyByteIterable |
collectByte(ShortToByteFunction function) |
|
LazyCharIterable |
collectChar(ShortToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(ShortToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(ShortToFloatFunction function) |
|
LazyIntIterable |
collectInt(ShortToIntFunction function) |
|
LazyLongIterable |
collectLong(ShortToLongFunction function) |
|
LazyShortIterable |
collectShort(ShortToShortFunction function) |
|
boolean |
contains(short value) |
Returns true if the value is contained in the ShortIterable, and false if it is not.
|
boolean |
containsAll(short... source) |
Returns true if the all of the values specified in the source array are contained
in the ShortIterable, and false if they are not.
|
boolean |
containsAll(ShortIterable source) |
Returns true if the all of the values specified in the source ShortIterable are contained
in the ShortIterable, and false if they are not.
|
int |
count(ShortPredicate predicate) |
Returns a count of the number of elements in the ShortIterable that return true for the
specified predicate.
|
short |
detectIfNone(ShortPredicate predicate,
short ifNone) |
|
<V> LazyIterable<V> |
flatCollect(ShortToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
void |
forEach(ShortProcedure procedure) |
Applies the ShortProcedure to each element in the ShortIterable.
|
<T> T |
injectInto(T injectedValue,
ObjectShortToObjectFunction<? super T,? extends T> function) |
|
boolean |
isEmpty() |
Returns true if this iterable has zero items.
|
java.lang.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). |
java.lang.String |
makeString(java.lang.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). |
java.lang.String |
makeString(java.lang.String start,
java.lang.String separator,
java.lang.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.
|
short |
max() |
|
short |
maxIfEmpty(short ifEmpty) |
|
double |
median() |
|
short |
min() |
|
short |
minIfEmpty(short ifEmpty) |
|
boolean |
noneSatisfy(ShortPredicate predicate) |
Returns true if none of the elements in the ShortIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
notEmpty() |
The English equivalent of !this.isEmpty()
|
LazyShortIterable |
reject(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return false for the specified predicate.
|
LazyShortIterable |
select(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return true for the specified predicate.
|
int |
size() |
Returns the number of items in this iterable.
|
long |
sum() |
|
LazyShortIterable |
tap(ShortProcedure procedure) |
|
short[] |
toArray() |
Converts the ShortIterable to a primitive short array.
|
MutableShortBag |
toBag() |
Converts the ShortIterable to a new MutableShortBag.
|
MutableShortList |
toList() |
Converts the ShortIterable to a new MutableShortList.
|
MutableShortSet |
toSet() |
Converts the ShortIterable to a new MutableShortSet.
|
short[] |
toSortedArray() |
|
MutableShortList |
toSortedList() |
|
java.lang.String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitaverageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, each, flatCollect, medianIfEmpty, reduce, reduceIfEmpty, reject, select, shortIterator, summaryStatisticspublic void forEach(ShortProcedure procedure)
ShortIterableforEach in interface ShortIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic java.lang.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 java.lang.ObjectAbstractCollection.toString()public boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic java.lang.String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablepublic java.lang.String makeString(java.lang.String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablepublic java.lang.String makeString(java.lang.String start,
java.lang.String separator,
java.lang.String end)
PrimitiveIterablemakeString in interface PrimitiveIterablepublic void appendString(java.lang.Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterablepublic void appendString(java.lang.Appendable appendable,
java.lang.String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterablepublic void appendString(java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic boolean contains(short value)
ShortIterablecontains in interface ShortIterablepublic boolean containsAll(short... source)
ShortIterablecontainsAll in interface ShortIterablepublic boolean containsAll(ShortIterable source)
ShortIterablecontainsAll in interface ShortIterablepublic LazyShortIterable select(ShortPredicate predicate)
ShortIterableselect in interface LazyShortIterableselect in interface ShortIterablepublic LazyShortIterable reject(ShortPredicate predicate)
ShortIterablereject in interface LazyShortIterablereject in interface ShortIterablepublic LazyShortIterable tap(ShortProcedure procedure)
tap in interface LazyShortIterabletap in interface ShortIterablepublic <V> LazyIterable<V> collect(ShortToObjectFunction<? extends V> function)
ShortIterablecollect in interface LazyShortIterablecollect in interface ShortIterablepublic <V> LazyIterable<V> flatCollect(ShortToObjectFunction<? extends java.lang.Iterable<V>> function)
flatCollect in interface LazyShortIterablepublic LazyBooleanIterable collectBoolean(ShortToBooleanFunction function)
collectBoolean in interface LazyShortIterablepublic LazyByteIterable collectByte(ShortToByteFunction function)
collectByte in interface LazyShortIterablepublic LazyCharIterable collectChar(ShortToCharFunction function)
collectChar in interface LazyShortIterablepublic LazyShortIterable collectShort(ShortToShortFunction function)
collectShort in interface LazyShortIterablepublic LazyIntIterable collectInt(ShortToIntFunction function)
collectInt in interface LazyShortIterablepublic LazyFloatIterable collectFloat(ShortToFloatFunction function)
collectFloat in interface LazyShortIterablepublic LazyLongIterable collectLong(ShortToLongFunction function)
collectLong in interface LazyShortIterablepublic LazyDoubleIterable collectDouble(ShortToDoubleFunction function)
collectDouble in interface LazyShortIterablepublic short detectIfNone(ShortPredicate predicate, short ifNone)
detectIfNone in interface ShortIterablepublic int count(ShortPredicate predicate)
ShortIterablecount in interface ShortIterablepublic boolean anySatisfy(ShortPredicate predicate)
ShortIterableanySatisfy in interface ShortIterablepublic boolean allSatisfy(ShortPredicate predicate)
ShortIterableallSatisfy in interface ShortIterablepublic boolean noneSatisfy(ShortPredicate predicate)
ShortIterablenoneSatisfy in interface ShortIterablepublic <T> T injectInto(T injectedValue,
ObjectShortToObjectFunction<? super T,? extends T> function)
injectInto in interface ShortIterablepublic RichIterable<ShortIterable> chunk(int size)
ShortIterablechunk in interface ShortIterablesize - the number of elements per chunkRichIterable containing ShortIterables of size size, except the last will be
truncated if the elements don't divide evenly.public short[] toArray()
ShortIterabletoArray in interface ShortIterablepublic MutableShortList toList()
ShortIterabletoList in interface ShortIterablepublic MutableShortSet toSet()
ShortIterabletoSet in interface ShortIterablepublic MutableShortBag toBag()
ShortIterabletoBag in interface ShortIterablepublic long sum()
sum in interface ShortIterablepublic short max()
max in interface ShortIterablepublic short maxIfEmpty(short ifEmpty)
maxIfEmpty in interface ShortIterablepublic short min()
min in interface ShortIterablepublic short minIfEmpty(short ifEmpty)
minIfEmpty in interface ShortIterablepublic double average()
average in interface ShortIterablepublic double median()
median in interface ShortIterablepublic short[] toSortedArray()
toSortedArray in interface ShortIterablepublic MutableShortList toSortedList()
toSortedList in interface ShortIterablepublic LazyShortIterable asLazy()
ShortIterableasLazy in interface ShortIterableCopyright © 2004–2020. All rights reserved.