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, select
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
summaryStatistics
public LazyFloatIterableAdapter(FloatIterable delegate)
public FloatIterator floatIterator()
public void each(FloatProcedure procedure)
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
size
in class AbstractLazyFloatIterable
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
isEmpty
in class AbstractLazyFloatIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
notEmpty
in class AbstractLazyFloatIterable
public int count(FloatPredicate predicate)
count
in interface FloatIterable
count
in class AbstractLazyFloatIterable
public boolean anySatisfy(FloatPredicate predicate)
anySatisfy
in interface FloatIterable
anySatisfy
in class AbstractLazyFloatIterable
public boolean allSatisfy(FloatPredicate predicate)
allSatisfy
in interface FloatIterable
allSatisfy
in class AbstractLazyFloatIterable
public boolean noneSatisfy(FloatPredicate predicate)
noneSatisfy
in interface FloatIterable
noneSatisfy
in class AbstractLazyFloatIterable
public float detectIfNone(FloatPredicate predicate, float ifNone)
detectIfNone
in interface FloatIterable
detectIfNone
in class AbstractLazyFloatIterable
public double sum()
sum
in interface FloatIterable
sum
in class AbstractLazyFloatIterable
public float max()
max
in interface FloatIterable
max
in class AbstractLazyFloatIterable
public float min()
min
in interface FloatIterable
min
in class AbstractLazyFloatIterable
public float minIfEmpty(float defaultValue)
minIfEmpty
in interface FloatIterable
minIfEmpty
in class AbstractLazyFloatIterable
public float maxIfEmpty(float defaultValue)
maxIfEmpty
in interface FloatIterable
maxIfEmpty
in class AbstractLazyFloatIterable
public double average()
average
in interface FloatIterable
average
in class AbstractLazyFloatIterable
public double median()
median
in interface FloatIterable
median
in class AbstractLazyFloatIterable
public float[] toSortedArray()
toSortedArray
in interface FloatIterable
toSortedArray
in class AbstractLazyFloatIterable
public MutableFloatList toSortedList()
toSortedList
in interface FloatIterable
toSortedList
in class AbstractLazyFloatIterable
public float[] toArray()
toArray
in interface FloatIterable
toArray
in class AbstractLazyFloatIterable
public String toString()
PrimitiveIterable
toString
in interface PrimitiveIterable
toString
in class AbstractLazyFloatIterable
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 AbstractLazyFloatIterable
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 AbstractLazyFloatIterable
public String makeString(String start, String separator, String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
makeString
in class AbstractLazyFloatIterable
public void appendString(Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyFloatIterable
public void appendString(Appendable appendable, String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyFloatIterable
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 AbstractLazyFloatIterable
public boolean contains(float value)
contains
in interface FloatIterable
contains
in class AbstractLazyFloatIterable
public boolean containsAll(float... source)
containsAll
in interface FloatIterable
containsAll
in class AbstractLazyFloatIterable
public boolean containsAll(FloatIterable source)
containsAll
in interface FloatIterable
containsAll
in class AbstractLazyFloatIterable
public MutableFloatList toList()
toList
in interface FloatIterable
toList
in class AbstractLazyFloatIterable
public MutableFloatSet toSet()
toSet
in interface FloatIterable
toSet
in class AbstractLazyFloatIterable
public MutableFloatBag toBag()
toBag
in interface FloatIterable
toBag
in class AbstractLazyFloatIterable
public <T> T injectInto(T injectedValue, ObjectFloatToObjectFunction<? super T,? extends T> function)
injectInto
in interface FloatIterable
injectInto
in class AbstractLazyFloatIterable
Copyright © 2004–2016. All rights reserved.