DoubleIterable, LazyDoubleIterable, PrimitiveIterableCollectBooleanToDoubleIterable, CollectByteToDoubleIterable, CollectCharToDoubleIterable, CollectDoubleIterable, CollectDoubleToDoubleIterable, CollectFloatToDoubleIterable, CollectIntToDoubleIterable, CollectLongToDoubleIterable, CollectShortToDoubleIterable, LazyDoubleIterableAdapter, ReverseDoubleIterable, SelectDoubleIterablepublic abstract class AbstractLazyDoubleIterable extends Object implements LazyDoubleIterable
| Constructor | Description |
|---|---|
AbstractLazyDoubleIterable() |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
allSatisfy(DoublePredicate predicate) |
Returns true if all of the elements in the DoubleIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
anySatisfy(DoublePredicate predicate) |
Returns true if any of the elements in the DoubleIterable return true for the
specified predicate, otherwise returns false.
|
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. |
LazyDoubleIterable |
asLazy() |
Returns a LazyDoubleIterable adapter wrapping the source DoubleIterable.
|
double |
average() |
|
<V> LazyIterable<V> |
collect(DoubleToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(DoubleToBooleanFunction function) |
|
LazyByteIterable |
collectByte(DoubleToByteFunction function) |
|
LazyCharIterable |
collectChar(DoubleToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(DoubleToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(DoubleToFloatFunction function) |
|
LazyIntIterable |
collectInt(DoubleToIntFunction function) |
|
LazyLongIterable |
collectLong(DoubleToLongFunction function) |
|
LazyShortIterable |
collectShort(DoubleToShortFunction function) |
|
boolean |
contains(double value) |
Returns true if the value is contained in the DoubleIterable, and false if it is not.
|
boolean |
containsAll(double... source) |
Returns true if the all of the values specified in the source array are contained
in the DoubleIterable, and false if they are not.
|
boolean |
containsAll(DoubleIterable source) |
Returns true if the all of the values specified in the source DoubleIterable are contained
in the DoubleIterable, and false if they are not.
|
int |
count(DoublePredicate predicate) |
Returns a count of the number of elements in the DoubleIterable that return true for the
specified predicate.
|
double |
detectIfNone(DoublePredicate predicate,
double ifNone) |
|
void |
forEach(DoubleProcedure procedure) |
Applies the DoubleProcedure to each element in the DoubleIterable.
|
<T> T |
injectInto(T injectedValue,
ObjectDoubleToObjectFunction<? 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 with the elements separated by the specified
separator and enclosed between the start and end strings.
|
double |
max() |
|
double |
maxIfEmpty(double ifEmpty) |
|
double |
median() |
|
double |
min() |
|
double |
minIfEmpty(double ifEmpty) |
|
boolean |
noneSatisfy(DoublePredicate predicate) |
Returns true if none of the elements in the DoubleIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
notEmpty() |
The English equivalent of !this.isEmpty()
|
LazyDoubleIterable |
reject(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return false for the specified predicate.
|
LazyDoubleIterable |
select(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return true for the specified predicate.
|
int |
size() |
Returns the number of items in this iterable.
|
double |
sum() |
|
double[] |
toArray() |
Converts the DoubleIterable to a primitive double array.
|
MutableDoubleBag |
toBag() |
Converts the DoubleIterable to a new MutableDoubleBag.
|
MutableDoubleList |
toList() |
Converts the DoubleIterable to a new MutableDoubleList.
|
MutableDoubleSet |
toSet() |
Converts the DoubleIterable to a new MutableDoubleSet.
|
double[] |
toSortedArray() |
|
MutableDoubleList |
toSortedList() |
|
String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, doubleIterator, each, flatCollect, reject, select, summaryStatisticspublic void forEach(DoubleProcedure procedure)
DoubleIterableforEach in interface DoubleIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic 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 PrimitiveIterabletoString in class ObjectAbstractCollection.toString()public boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablepublic String makeString(String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablepublic String makeString(String start, String separator, String end)
PrimitiveIterablemakeString in interface PrimitiveIterablepublic void appendString(Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic boolean contains(double value)
DoubleIterablecontains in interface DoubleIterablepublic boolean containsAll(double... source)
DoubleIterablecontainsAll in interface DoubleIterablepublic boolean containsAll(DoubleIterable source)
DoubleIterablecontainsAll in interface DoubleIterablepublic LazyDoubleIterable select(DoublePredicate predicate)
DoubleIterableselect in interface DoubleIterableselect in interface LazyDoubleIterablepublic LazyDoubleIterable reject(DoublePredicate predicate)
DoubleIterablereject in interface DoubleIterablereject in interface LazyDoubleIterablepublic <V> LazyIterable<V> collect(DoubleToObjectFunction<? extends V> function)
DoubleIterablecollect in interface DoubleIterablecollect in interface LazyDoubleIterablepublic LazyBooleanIterable collectBoolean(DoubleToBooleanFunction function)
collectBoolean in interface LazyDoubleIterablepublic LazyByteIterable collectByte(DoubleToByteFunction function)
collectByte in interface LazyDoubleIterablepublic LazyCharIterable collectChar(DoubleToCharFunction function)
collectChar in interface LazyDoubleIterablepublic LazyShortIterable collectShort(DoubleToShortFunction function)
collectShort in interface LazyDoubleIterablepublic LazyIntIterable collectInt(DoubleToIntFunction function)
collectInt in interface LazyDoubleIterablepublic LazyFloatIterable collectFloat(DoubleToFloatFunction function)
collectFloat in interface LazyDoubleIterablepublic LazyLongIterable collectLong(DoubleToLongFunction function)
collectLong in interface LazyDoubleIterablepublic LazyDoubleIterable collectDouble(DoubleToDoubleFunction function)
collectDouble in interface LazyDoubleIterablepublic double detectIfNone(DoublePredicate predicate, double ifNone)
detectIfNone in interface DoubleIterablepublic int count(DoublePredicate predicate)
DoubleIterablecount in interface DoubleIterablepublic boolean anySatisfy(DoublePredicate predicate)
DoubleIterableanySatisfy in interface DoubleIterablepublic boolean allSatisfy(DoublePredicate predicate)
DoubleIterableallSatisfy in interface DoubleIterablepublic boolean noneSatisfy(DoublePredicate predicate)
DoubleIterablenoneSatisfy in interface DoubleIterablepublic <T> T injectInto(T injectedValue,
ObjectDoubleToObjectFunction<? super T,? extends T> function)
injectInto in interface DoubleIterablepublic double[] toArray()
DoubleIterabletoArray in interface DoubleIterablepublic MutableDoubleList toList()
DoubleIterabletoList in interface DoubleIterablepublic MutableDoubleSet toSet()
DoubleIterabletoSet in interface DoubleIterablepublic MutableDoubleBag toBag()
DoubleIterabletoBag in interface DoubleIterablepublic double sum()
sum in interface DoubleIterablepublic double max()
max in interface DoubleIterablepublic double maxIfEmpty(double ifEmpty)
maxIfEmpty in interface DoubleIterablepublic double min()
min in interface DoubleIterablepublic double minIfEmpty(double ifEmpty)
minIfEmpty in interface DoubleIterablepublic double average()
average in interface DoubleIterablepublic double median()
median in interface DoubleIterablepublic double[] toSortedArray()
toSortedArray in interface DoubleIterablepublic MutableDoubleList toSortedList()
toSortedList in interface DoubleIterablepublic LazyDoubleIterable asLazy()
DoubleIterableasLazy in interface DoubleIterableCopyright © 2004–2017. All rights reserved.