DoubleIterable
, LazyDoubleIterable
, PrimitiveIterable
public class ReverseDoubleIterable extends AbstractLazyDoubleIterable
ReverseIterable
Constructor | Description |
---|---|
ReverseDoubleIterable(DoubleList newAdapted) |
Modifier and Type | Method | Description |
---|---|---|
static ReverseDoubleIterable |
adapt(DoubleList doubleList) |
|
LazyDoubleIterable |
asLazy() |
Returns a LazyDoubleIterable adapter wrapping the source DoubleIterable.
|
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.
|
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.
|
boolean |
isEmpty() |
Returns true if this iterable has zero items.
|
double |
max() |
|
double |
maxIfEmpty(double defaultValue) |
|
double |
median() |
|
double |
min() |
|
double |
minIfEmpty(double defaultValue) |
|
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() |
allSatisfy, anySatisfy, appendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, count, detectIfNone, flatCollect, forEach, injectInto, makeString, makeString, makeString, noneSatisfy, reject, select, tap, toSortedList, toString
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, medianIfEmpty, reject, select, summaryStatistics
public ReverseDoubleIterable(DoubleList newAdapted)
public static ReverseDoubleIterable adapt(DoubleList doubleList)
public DoubleIterator doubleIterator()
DoubleIterable
public void each(DoubleProcedure procedure)
DoubleIterable
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 double[] toArray()
DoubleIterable
toArray
in interface DoubleIterable
toArray
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 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 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 LazyDoubleIterable asLazy()
DoubleIterable
asLazy
in interface DoubleIterable
asLazy
in class AbstractLazyDoubleIterable
Copyright © 2004–2017. All rights reserved.