public class LazyFloatIterableAdapter extends AbstractLazyFloatIterable
| Constructor and Description |
|---|
LazyFloatIterableAdapter(FloatIterable delegate) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(FloatPredicate predicate) |
boolean |
anySatisfy(FloatPredicate 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(float value) |
boolean |
containsAll(float... source) |
boolean |
containsAll(FloatIterable source) |
int |
count(FloatPredicate predicate) |
float |
detectIfNone(FloatPredicate predicate,
float ifNone) |
void |
each(FloatProcedure procedure) |
FloatIterator |
floatIterator() |
<T> T |
injectInto(T injectedValue,
ObjectFloatToObjectFunction<? 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.
|
float |
max() |
float |
maxIfEmpty(float defaultValue) |
double |
median() |
float |
min() |
float |
minIfEmpty(float defaultValue) |
boolean |
noneSatisfy(FloatPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
int |
size()
Returns the number of items in this iterable.
|
double |
sum() |
float[] |
toArray() |
MutableFloatBag |
toBag() |
MutableFloatList |
toList() |
MutableFloatSet |
toSet() |
float[] |
toSortedArray() |
MutableFloatList |
toSortedList() |
String |
toString()
Returns a string representation of this PrimitiveIterable.
|
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, selectpublic LazyFloatIterableAdapter(FloatIterable delegate)
public FloatIterator floatIterator()
public void each(FloatProcedure procedure)
public int size()
PrimitiveIterablesize in interface PrimitiveIterablesize in class AbstractLazyFloatIterablepublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterableisEmpty in class AbstractLazyFloatIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablenotEmpty in class AbstractLazyFloatIterablepublic int count(FloatPredicate predicate)
count in interface FloatIterablecount in class AbstractLazyFloatIterablepublic boolean anySatisfy(FloatPredicate predicate)
anySatisfy in interface FloatIterableanySatisfy in class AbstractLazyFloatIterablepublic boolean allSatisfy(FloatPredicate predicate)
allSatisfy in interface FloatIterableallSatisfy in class AbstractLazyFloatIterablepublic boolean noneSatisfy(FloatPredicate predicate)
noneSatisfy in interface FloatIterablenoneSatisfy in class AbstractLazyFloatIterablepublic float detectIfNone(FloatPredicate predicate, float ifNone)
detectIfNone in interface FloatIterabledetectIfNone in class AbstractLazyFloatIterablepublic double sum()
sum in interface FloatIterablesum in class AbstractLazyFloatIterablepublic float max()
max in interface FloatIterablemax in class AbstractLazyFloatIterablepublic float min()
min in interface FloatIterablemin in class AbstractLazyFloatIterablepublic float minIfEmpty(float defaultValue)
minIfEmpty in interface FloatIterableminIfEmpty in class AbstractLazyFloatIterablepublic float maxIfEmpty(float defaultValue)
maxIfEmpty in interface FloatIterablemaxIfEmpty in class AbstractLazyFloatIterablepublic double average()
average in interface FloatIterableaverage in class AbstractLazyFloatIterablepublic double median()
median in interface FloatIterablemedian in class AbstractLazyFloatIterablepublic float[] toSortedArray()
toSortedArray in interface FloatIterabletoSortedArray in class AbstractLazyFloatIterablepublic MutableFloatList toSortedList()
toSortedList in interface FloatIterabletoSortedList in class AbstractLazyFloatIterablepublic float[] toArray()
toArray in interface FloatIterabletoArray in class AbstractLazyFloatIterablepublic String toString()
PrimitiveIterabletoString in interface PrimitiveIterabletoString in class AbstractLazyFloatIterablepublic String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic String makeString(String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic String makeString(String start, String separator, String end)
PrimitiveIterablemakeString in interface PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable, String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic boolean contains(float value)
contains in interface FloatIterablecontains in class AbstractLazyFloatIterablepublic boolean containsAll(float... source)
containsAll in interface FloatIterablecontainsAll in class AbstractLazyFloatIterablepublic boolean containsAll(FloatIterable source)
containsAll in interface FloatIterablecontainsAll in class AbstractLazyFloatIterablepublic MutableFloatList toList()
toList in interface FloatIterabletoList in class AbstractLazyFloatIterablepublic MutableFloatSet toSet()
toSet in interface FloatIterabletoSet in class AbstractLazyFloatIterablepublic MutableFloatBag toBag()
toBag in interface FloatIterabletoBag in class AbstractLazyFloatIterablepublic <T> T injectInto(T injectedValue,
ObjectFloatToObjectFunction<? super T,? extends T> function)
injectInto in interface FloatIterableinjectInto in class AbstractLazyFloatIterableCopyright © 2004–2016. All rights reserved.