DoubleIterable
, LazyDoubleIterable
, PrimitiveIterable
public class LazyDoubleIterableAdapter extends AbstractLazyDoubleIterable
Constructor | Description |
---|---|
LazyDoubleIterableAdapter(DoubleIterable delegate) |
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 . |
double |
average() |
|
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) |
|
DoubleIterator |
doubleIterator() |
Returns a primitive iterator that can be used to iterate over the DoubleIterable in an
imperative style.
|
void |
each(DoubleProcedure procedure) |
A synonym for forEach.
|
<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 defaultValue) |
|
double |
median() |
|
double |
min() |
|
double |
minIfEmpty(double defaultValue) |
|
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()
|
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.
|
asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, forEach, reject, select, tap
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics
public LazyDoubleIterableAdapter(DoubleIterable delegate)
public DoubleIterator doubleIterator()
DoubleIterable
public void each(DoubleProcedure procedure)
DoubleIterable
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
size
in class AbstractLazyDoubleIterable
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
isEmpty
in class AbstractLazyDoubleIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
notEmpty
in class AbstractLazyDoubleIterable
public int count(DoublePredicate predicate)
DoubleIterable
count
in interface DoubleIterable
count
in class AbstractLazyDoubleIterable
public boolean anySatisfy(DoublePredicate predicate)
DoubleIterable
anySatisfy
in interface DoubleIterable
anySatisfy
in class AbstractLazyDoubleIterable
public boolean allSatisfy(DoublePredicate predicate)
DoubleIterable
allSatisfy
in interface DoubleIterable
allSatisfy
in class AbstractLazyDoubleIterable
public boolean noneSatisfy(DoublePredicate predicate)
DoubleIterable
noneSatisfy
in interface DoubleIterable
noneSatisfy
in class AbstractLazyDoubleIterable
public double detectIfNone(DoublePredicate predicate, double ifNone)
detectIfNone
in interface DoubleIterable
detectIfNone
in class AbstractLazyDoubleIterable
public double sum()
sum
in interface DoubleIterable
sum
in class AbstractLazyDoubleIterable
public double max()
max
in interface DoubleIterable
max
in class AbstractLazyDoubleIterable
public double min()
min
in interface DoubleIterable
min
in class AbstractLazyDoubleIterable
public double minIfEmpty(double defaultValue)
minIfEmpty
in interface DoubleIterable
minIfEmpty
in class AbstractLazyDoubleIterable
public double maxIfEmpty(double defaultValue)
maxIfEmpty
in interface DoubleIterable
maxIfEmpty
in class AbstractLazyDoubleIterable
public double average()
average
in interface DoubleIterable
average
in class AbstractLazyDoubleIterable
public double median()
median
in interface DoubleIterable
median
in class AbstractLazyDoubleIterable
public double[] toSortedArray()
toSortedArray
in interface DoubleIterable
toSortedArray
in class AbstractLazyDoubleIterable
public MutableDoubleList toSortedList()
toSortedList
in interface DoubleIterable
toSortedList
in class AbstractLazyDoubleIterable
public double[] toArray()
DoubleIterable
toArray
in interface DoubleIterable
toArray
in class AbstractLazyDoubleIterable
public 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 AbstractLazyDoubleIterable
AbstractCollection.toString()
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 AbstractLazyDoubleIterable
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 AbstractLazyDoubleIterable
public String makeString(String start, String separator, String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
makeString
in class AbstractLazyDoubleIterable
public void appendString(Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyDoubleIterable
public void appendString(Appendable appendable, String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
appendString
in class AbstractLazyDoubleIterable
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 AbstractLazyDoubleIterable
public boolean contains(double value)
DoubleIterable
contains
in interface DoubleIterable
contains
in class AbstractLazyDoubleIterable
public boolean containsAll(double... source)
DoubleIterable
containsAll
in interface DoubleIterable
containsAll
in class AbstractLazyDoubleIterable
public boolean containsAll(DoubleIterable source)
DoubleIterable
containsAll
in interface DoubleIterable
containsAll
in class AbstractLazyDoubleIterable
public MutableDoubleList toList()
DoubleIterable
toList
in interface DoubleIterable
toList
in class AbstractLazyDoubleIterable
public MutableDoubleSet toSet()
DoubleIterable
toSet
in interface DoubleIterable
toSet
in class AbstractLazyDoubleIterable
public MutableDoubleBag toBag()
DoubleIterable
toBag
in interface DoubleIterable
toBag
in class AbstractLazyDoubleIterable
public <T> T injectInto(T injectedValue, ObjectDoubleToObjectFunction<? super T,? extends T> function)
injectInto
in interface DoubleIterable
injectInto
in class AbstractLazyDoubleIterable
Copyright © 2004–2019. All rights reserved.