public abstract class AbstractLazyShortIterable extends Object implements LazyShortIterable
Constructor and Description |
---|
AbstractLazyShortIterable() |
Modifier and Type | Method and Description |
---|---|
boolean |
allSatisfy(ShortPredicate predicate) |
boolean |
anySatisfy(ShortPredicate predicate) |
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 . |
LazyShortIterable |
asLazy() |
double |
average() |
<V> LazyIterable<V> |
collect(ShortToObjectFunction<? extends V> function) |
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) |
boolean |
containsAll(short... source) |
boolean |
containsAll(ShortIterable source) |
int |
count(ShortPredicate predicate) |
short |
detectIfNone(ShortPredicate predicate,
short ifNone) |
void |
forEach(ShortProcedure procedure) |
<T> T |
injectInto(T injectedValue,
ObjectShortToObjectFunction<? 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.
|
short |
max() |
short |
maxIfEmpty(short ifEmpty) |
double |
median() |
short |
min() |
short |
minIfEmpty(short ifEmpty) |
boolean |
noneSatisfy(ShortPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
LazyShortIterable |
reject(ShortPredicate predicate) |
LazyShortIterable |
select(ShortPredicate predicate) |
int |
size()
Returns the number of items in this iterable.
|
long |
sum() |
short[] |
toArray() |
MutableShortBag |
toBag() |
MutableShortList |
toList() |
MutableShortSet |
toSet() |
short[] |
toSortedArray() |
MutableShortList |
toSortedList() |
String |
toString()
Returns a string representation of this PrimitiveIterable.
|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
each, shortIterator, summaryStatistics
public void forEach(ShortProcedure procedure)
forEach
in interface ShortIterable
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
public String toString()
PrimitiveIterable
toString
in interface PrimitiveIterable
toString
in class Object
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
public String makeString()
PrimitiveIterable
PrimitiveIterable.makeString(String)
and defaulting
the separator parameter to the characters ", " (comma and space).makeString
in interface PrimitiveIterable
public String makeString(String separator)
PrimitiveIterable
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString
in interface PrimitiveIterable
public String makeString(String start, String separator, String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
public void appendString(Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
public void appendString(Appendable appendable, String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
public void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String, String, String)
.appendString
in interface PrimitiveIterable
public boolean contains(short value)
contains
in interface ShortIterable
public boolean containsAll(short... source)
containsAll
in interface ShortIterable
public boolean containsAll(ShortIterable source)
containsAll
in interface ShortIterable
public LazyShortIterable select(ShortPredicate predicate)
select
in interface LazyShortIterable
select
in interface ShortIterable
public LazyShortIterable reject(ShortPredicate predicate)
reject
in interface LazyShortIterable
reject
in interface ShortIterable
public <V> LazyIterable<V> collect(ShortToObjectFunction<? extends V> function)
collect
in interface LazyShortIterable
collect
in interface ShortIterable
public LazyBooleanIterable collectBoolean(ShortToBooleanFunction function)
collectBoolean
in interface LazyShortIterable
public LazyByteIterable collectByte(ShortToByteFunction function)
collectByte
in interface LazyShortIterable
public LazyCharIterable collectChar(ShortToCharFunction function)
collectChar
in interface LazyShortIterable
public LazyShortIterable collectShort(ShortToShortFunction function)
collectShort
in interface LazyShortIterable
public LazyIntIterable collectInt(ShortToIntFunction function)
collectInt
in interface LazyShortIterable
public LazyFloatIterable collectFloat(ShortToFloatFunction function)
collectFloat
in interface LazyShortIterable
public LazyLongIterable collectLong(ShortToLongFunction function)
collectLong
in interface LazyShortIterable
public LazyDoubleIterable collectDouble(ShortToDoubleFunction function)
collectDouble
in interface LazyShortIterable
public short detectIfNone(ShortPredicate predicate, short ifNone)
detectIfNone
in interface ShortIterable
public int count(ShortPredicate predicate)
count
in interface ShortIterable
public boolean anySatisfy(ShortPredicate predicate)
anySatisfy
in interface ShortIterable
public boolean allSatisfy(ShortPredicate predicate)
allSatisfy
in interface ShortIterable
public boolean noneSatisfy(ShortPredicate predicate)
noneSatisfy
in interface ShortIterable
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)
injectInto
in interface ShortIterable
public short[] toArray()
toArray
in interface ShortIterable
public MutableShortList toList()
toList
in interface ShortIterable
public MutableShortSet toSet()
toSet
in interface ShortIterable
public MutableShortBag toBag()
toBag
in interface ShortIterable
public long sum()
sum
in interface ShortIterable
public short max()
max
in interface ShortIterable
public short maxIfEmpty(short ifEmpty)
maxIfEmpty
in interface ShortIterable
public short min()
min
in interface ShortIterable
public short minIfEmpty(short ifEmpty)
minIfEmpty
in interface ShortIterable
public double average()
average
in interface ShortIterable
public double median()
median
in interface ShortIterable
public short[] toSortedArray()
toSortedArray
in interface ShortIterable
public MutableShortList toSortedList()
toSortedList
in interface ShortIterable
public LazyShortIterable asLazy()
asLazy
in interface ShortIterable
Copyright © 2004–2016. All rights reserved.