FloatIterable
, LazyFloatIterable
, PrimitiveIterable
CollectBooleanToFloatIterable
, CollectByteToFloatIterable
, CollectCharToFloatIterable
, CollectDoubleToFloatIterable
, CollectFloatIterable
, CollectFloatToFloatIterable
, CollectIntToFloatIterable
, CollectLongToFloatIterable
, CollectShortToFloatIterable
, LazyFloatIterableAdapter
, ReverseFloatIterable
, SelectFloatIterable
, TapFloatIterable
public abstract class AbstractLazyFloatIterable extends java.lang.Object implements LazyFloatIterable
Constructor | Description |
---|---|
AbstractLazyFloatIterable() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
allSatisfy(FloatPredicate predicate) |
Returns true if all of the elements in the FloatIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
anySatisfy(FloatPredicate predicate) |
Returns true if any of the elements in the FloatIterable 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 . |
LazyFloatIterable |
asLazy() |
Returns a LazyFloatIterable adapter wrapping the source FloatIterable.
|
double |
average() |
|
<V> LazyIterable<V> |
collect(FloatToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(FloatToBooleanFunction function) |
|
LazyByteIterable |
collectByte(FloatToByteFunction function) |
|
LazyCharIterable |
collectChar(FloatToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(FloatToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(FloatToFloatFunction function) |
|
LazyIntIterable |
collectInt(FloatToIntFunction function) |
|
LazyLongIterable |
collectLong(FloatToLongFunction function) |
|
LazyShortIterable |
collectShort(FloatToShortFunction function) |
|
boolean |
contains(float value) |
Returns true if the value is contained in the FloatIterable, and false if it is not.
|
boolean |
containsAll(float... source) |
Returns true if the all of the values specified in the source array are contained
in the FloatIterable, and false if they are not.
|
boolean |
containsAll(FloatIterable source) |
Returns true if the all of the values specified in the source FloatIterable are contained
in the FloatIterable, and false if they are not.
|
int |
count(FloatPredicate predicate) |
Returns a count of the number of elements in the FloatIterable that return true for the
specified predicate.
|
float |
detectIfNone(FloatPredicate predicate,
float ifNone) |
|
<V> LazyIterable<V> |
flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
void |
forEach(FloatProcedure procedure) |
Applies the FloatProcedure to each element in the FloatIterable.
|
<T> T |
injectInto(T injectedValue,
ObjectFloatToObjectFunction<? 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.
|
float |
max() |
|
float |
maxIfEmpty(float ifEmpty) |
|
double |
median() |
|
float |
min() |
|
float |
minIfEmpty(float ifEmpty) |
|
boolean |
noneSatisfy(FloatPredicate predicate) |
Returns true if none of the elements in the FloatIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
notEmpty() |
The English equivalent of !this.isEmpty()
|
LazyFloatIterable |
reject(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
LazyFloatIterable |
select(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
int |
size() |
Returns the number of items in this iterable.
|
double |
sum() |
|
LazyFloatIterable |
tap(FloatProcedure procedure) |
|
float[] |
toArray() |
Converts the FloatIterable to a primitive float array.
|
MutableFloatBag |
toBag() |
Converts the FloatIterable to a new MutableFloatBag.
|
MutableFloatList |
toList() |
Converts the FloatIterable to a new MutableFloatList.
|
MutableFloatSet |
toSet() |
Converts the FloatIterable to a new MutableFloatSet.
|
float[] |
toSortedArray() |
|
MutableFloatList |
toSortedList() |
|
java.lang.String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, each, flatCollect, floatIterator, medianIfEmpty, reject, select, summaryStatistics
public void forEach(FloatProcedure procedure)
FloatIterable
forEach
in interface FloatIterable
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
public 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 PrimitiveIterable
toString
in class java.lang.Object
AbstractCollection.toString()
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
public java.lang.String makeString()
PrimitiveIterable
PrimitiveIterable.makeString(String)
and defaulting
the separator parameter to the characters ", " (comma and space).makeString
in interface PrimitiveIterable
public java.lang.String makeString(java.lang.String separator)
PrimitiveIterable
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString
in interface PrimitiveIterable
public java.lang.String makeString(java.lang.String start, java.lang.String separator, java.lang.String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable, java.lang.String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String, String, String)
.appendString
in interface PrimitiveIterable
public boolean contains(float value)
FloatIterable
contains
in interface FloatIterable
public boolean containsAll(float... source)
FloatIterable
containsAll
in interface FloatIterable
public boolean containsAll(FloatIterable source)
FloatIterable
containsAll
in interface FloatIterable
public LazyFloatIterable select(FloatPredicate predicate)
FloatIterable
select
in interface FloatIterable
select
in interface LazyFloatIterable
public LazyFloatIterable reject(FloatPredicate predicate)
FloatIterable
reject
in interface FloatIterable
reject
in interface LazyFloatIterable
public LazyFloatIterable tap(FloatProcedure procedure)
tap
in interface FloatIterable
tap
in interface LazyFloatIterable
public <V> LazyIterable<V> collect(FloatToObjectFunction<? extends V> function)
FloatIterable
collect
in interface FloatIterable
collect
in interface LazyFloatIterable
public <V> LazyIterable<V> flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
flatCollect
in interface LazyFloatIterable
public LazyBooleanIterable collectBoolean(FloatToBooleanFunction function)
collectBoolean
in interface LazyFloatIterable
public LazyByteIterable collectByte(FloatToByteFunction function)
collectByte
in interface LazyFloatIterable
public LazyCharIterable collectChar(FloatToCharFunction function)
collectChar
in interface LazyFloatIterable
public LazyShortIterable collectShort(FloatToShortFunction function)
collectShort
in interface LazyFloatIterable
public LazyIntIterable collectInt(FloatToIntFunction function)
collectInt
in interface LazyFloatIterable
public LazyFloatIterable collectFloat(FloatToFloatFunction function)
collectFloat
in interface LazyFloatIterable
public LazyLongIterable collectLong(FloatToLongFunction function)
collectLong
in interface LazyFloatIterable
public LazyDoubleIterable collectDouble(FloatToDoubleFunction function)
collectDouble
in interface LazyFloatIterable
public float detectIfNone(FloatPredicate predicate, float ifNone)
detectIfNone
in interface FloatIterable
public int count(FloatPredicate predicate)
FloatIterable
count
in interface FloatIterable
public boolean anySatisfy(FloatPredicate predicate)
FloatIterable
anySatisfy
in interface FloatIterable
public boolean allSatisfy(FloatPredicate predicate)
FloatIterable
allSatisfy
in interface FloatIterable
public boolean noneSatisfy(FloatPredicate predicate)
FloatIterable
noneSatisfy
in interface FloatIterable
public <T> T injectInto(T injectedValue, ObjectFloatToObjectFunction<? super T,? extends T> function)
injectInto
in interface FloatIterable
public float[] toArray()
FloatIterable
toArray
in interface FloatIterable
public MutableFloatList toList()
FloatIterable
toList
in interface FloatIterable
public MutableFloatSet toSet()
FloatIterable
toSet
in interface FloatIterable
public MutableFloatBag toBag()
FloatIterable
toBag
in interface FloatIterable
public double sum()
sum
in interface FloatIterable
public float max()
max
in interface FloatIterable
public float maxIfEmpty(float ifEmpty)
maxIfEmpty
in interface FloatIterable
public float min()
min
in interface FloatIterable
public float minIfEmpty(float ifEmpty)
minIfEmpty
in interface FloatIterable
public double average()
average
in interface FloatIterable
public double median()
median
in interface FloatIterable
public float[] toSortedArray()
toSortedArray
in interface FloatIterable
public MutableFloatList toSortedList()
toSortedList
in interface FloatIterable
public LazyFloatIterable asLazy()
FloatIterable
asLazy
in interface FloatIterable
Copyright © 2004–2017. All rights reserved.