public class LazyDoubleIterableAdapter extends AbstractLazyDoubleIterable
| Constructor and Description |
|---|
LazyDoubleIterableAdapter(org.eclipse.collections.api.DoubleIterable delegate) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
double |
average() |
boolean |
contains(double value) |
boolean |
containsAll(double... source) |
boolean |
containsAll(org.eclipse.collections.api.DoubleIterable source) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
double |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate,
double ifNone) |
org.eclipse.collections.api.iterator.DoubleIterator |
doubleIterator() |
void |
each(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure) |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
double |
max() |
double |
maxIfEmpty(double defaultValue) |
double |
median() |
double |
min() |
double |
minIfEmpty(double defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate) |
boolean |
notEmpty() |
int |
size() |
double |
sum() |
double[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableDoubleBag |
toBag() |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
toList() |
org.eclipse.collections.api.set.primitive.MutableDoubleSet |
toSet() |
double[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
toSortedList() |
String |
toString() |
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, selectpublic LazyDoubleIterableAdapter(org.eclipse.collections.api.DoubleIterable delegate)
public org.eclipse.collections.api.iterator.DoubleIterator doubleIterator()
public void each(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure)
public int size()
size in interface org.eclipse.collections.api.PrimitiveIterablesize in class AbstractLazyDoubleIterablepublic boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterableisEmpty in class AbstractLazyDoubleIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablenotEmpty in class AbstractLazyDoubleIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
count in interface org.eclipse.collections.api.DoubleIterablecount in class AbstractLazyDoubleIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
anySatisfy in interface org.eclipse.collections.api.DoubleIterableanySatisfy in class AbstractLazyDoubleIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
allSatisfy in interface org.eclipse.collections.api.DoubleIterableallSatisfy in class AbstractLazyDoubleIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.DoubleIterablenoneSatisfy in class AbstractLazyDoubleIterablepublic double detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate,
double ifNone)
detectIfNone in interface org.eclipse.collections.api.DoubleIterabledetectIfNone in class AbstractLazyDoubleIterablepublic double sum()
sum in interface org.eclipse.collections.api.DoubleIterablesum in class AbstractLazyDoubleIterablepublic double max()
max in interface org.eclipse.collections.api.DoubleIterablemax in class AbstractLazyDoubleIterablepublic double min()
min in interface org.eclipse.collections.api.DoubleIterablemin in class AbstractLazyDoubleIterablepublic double minIfEmpty(double defaultValue)
minIfEmpty in interface org.eclipse.collections.api.DoubleIterableminIfEmpty in class AbstractLazyDoubleIterablepublic double maxIfEmpty(double defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.DoubleIterablemaxIfEmpty in class AbstractLazyDoubleIterablepublic double average()
average in interface org.eclipse.collections.api.DoubleIterableaverage in class AbstractLazyDoubleIterablepublic double median()
median in interface org.eclipse.collections.api.DoubleIterablemedian in class AbstractLazyDoubleIterablepublic double[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.DoubleIterabletoSortedArray in class AbstractLazyDoubleIterablepublic org.eclipse.collections.api.list.primitive.MutableDoubleList toSortedList()
toSortedList in interface org.eclipse.collections.api.DoubleIterabletoSortedList in class AbstractLazyDoubleIterablepublic double[] toArray()
toArray in interface org.eclipse.collections.api.DoubleIterabletoArray in class AbstractLazyDoubleIterablepublic String toString()
toString in interface org.eclipse.collections.api.PrimitiveIterabletoString in class AbstractLazyDoubleIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyDoubleIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyDoubleIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyDoubleIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyDoubleIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyDoubleIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyDoubleIterablepublic boolean contains(double value)
contains in interface org.eclipse.collections.api.DoubleIterablecontains in class AbstractLazyDoubleIterablepublic boolean containsAll(double... source)
containsAll in interface org.eclipse.collections.api.DoubleIterablecontainsAll in class AbstractLazyDoubleIterablepublic boolean containsAll(org.eclipse.collections.api.DoubleIterable source)
containsAll in interface org.eclipse.collections.api.DoubleIterablecontainsAll in class AbstractLazyDoubleIterablepublic org.eclipse.collections.api.list.primitive.MutableDoubleList toList()
toList in interface org.eclipse.collections.api.DoubleIterabletoList in class AbstractLazyDoubleIterablepublic org.eclipse.collections.api.set.primitive.MutableDoubleSet toSet()
toSet in interface org.eclipse.collections.api.DoubleIterabletoSet in class AbstractLazyDoubleIterablepublic org.eclipse.collections.api.bag.primitive.MutableDoubleBag toBag()
toBag in interface org.eclipse.collections.api.DoubleIterabletoBag in class AbstractLazyDoubleIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.DoubleIterableinjectInto in class AbstractLazyDoubleIterableCopyright © 2004–2018. All rights reserved.