public class LazyShortIterableAdapter extends AbstractLazyShortIterable
Constructor and Description |
---|
LazyShortIterableAdapter(ShortIterable delegate) |
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 . |
double |
average() |
boolean |
contains(short value) |
boolean |
containsAll(short... source) |
boolean |
containsAll(ShortIterable source) |
int |
count(ShortPredicate predicate) |
short |
detectIfNone(ShortPredicate predicate,
short ifNone) |
void |
each(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 defaultValue) |
double |
median() |
short |
min() |
short |
minIfEmpty(short defaultValue) |
boolean |
noneSatisfy(ShortPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
ShortIterator |
shortIterator() |
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.
|
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, select
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
summaryStatistics
public LazyShortIterableAdapter(ShortIterable delegate)
public ShortIterator shortIterator()
public void each(ShortProcedure procedure)
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
size
in class AbstractLazyShortIterable
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
isEmpty
in class AbstractLazyShortIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
notEmpty
in class AbstractLazyShortIterable
public int count(ShortPredicate predicate)
count
in interface ShortIterable
count
in class AbstractLazyShortIterable
public boolean anySatisfy(ShortPredicate predicate)
anySatisfy
in interface ShortIterable
anySatisfy
in class AbstractLazyShortIterable
public boolean allSatisfy(ShortPredicate predicate)
allSatisfy
in interface ShortIterable
allSatisfy
in class AbstractLazyShortIterable
public boolean noneSatisfy(ShortPredicate predicate)
noneSatisfy
in interface ShortIterable
noneSatisfy
in class AbstractLazyShortIterable
public short detectIfNone(ShortPredicate predicate, short ifNone)
detectIfNone
in interface ShortIterable
detectIfNone
in class AbstractLazyShortIterable
public long sum()
sum
in interface ShortIterable
sum
in class AbstractLazyShortIterable
public short max()
max
in interface ShortIterable
max
in class AbstractLazyShortIterable
public short min()
min
in interface ShortIterable
min
in class AbstractLazyShortIterable
public short minIfEmpty(short defaultValue)
minIfEmpty
in interface ShortIterable
minIfEmpty
in class AbstractLazyShortIterable
public short maxIfEmpty(short defaultValue)
maxIfEmpty
in interface ShortIterable
maxIfEmpty
in class AbstractLazyShortIterable
public double average()
average
in interface ShortIterable
average
in class AbstractLazyShortIterable
public double median()
median
in interface ShortIterable
median
in class AbstractLazyShortIterable
public short[] toSortedArray()
toSortedArray
in interface ShortIterable
toSortedArray
in class AbstractLazyShortIterable
public MutableShortList toSortedList()
toSortedList
in interface ShortIterable
toSortedList
in class AbstractLazyShortIterable
public short[] toArray()
toArray
in interface ShortIterable
toArray
in class AbstractLazyShortIterable
public String toString()
PrimitiveIterable
toString
in interface PrimitiveIterable
toString
in class AbstractLazyShortIterable
public String makeString()
PrimitiveIterable
PrimitiveIterable.makeString(String)
and defaulting
the separator parameter to the characters ", " (comma and space).makeString
in interface PrimitiveIterable
makeString
in class AbstractLazyShortIterable
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
makeString
in class AbstractLazyShortIterable
public String makeString(String start, String separator, String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
makeString
in class AbstractLazyShortIterable
public void appendString(Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyShortIterable
public void appendString(Appendable appendable, String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyShortIterable
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
appendString
in class AbstractLazyShortIterable
public boolean contains(short value)
contains
in interface ShortIterable
contains
in class AbstractLazyShortIterable
public boolean containsAll(short... source)
containsAll
in interface ShortIterable
containsAll
in class AbstractLazyShortIterable
public boolean containsAll(ShortIterable source)
containsAll
in interface ShortIterable
containsAll
in class AbstractLazyShortIterable
public MutableShortList toList()
toList
in interface ShortIterable
toList
in class AbstractLazyShortIterable
public MutableShortSet toSet()
toSet
in interface ShortIterable
toSet
in class AbstractLazyShortIterable
public MutableShortBag toBag()
toBag
in interface ShortIterable
toBag
in class AbstractLazyShortIterable
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)
injectInto
in interface ShortIterable
injectInto
in class AbstractLazyShortIterable
Copyright © 2004–2016. All rights reserved.