public class LazyFloatIterableAdapter extends AbstractLazyFloatIterable
| Constructor and Description |
|---|
LazyFloatIterableAdapter(org.eclipse.collections.api.FloatIterable delegate) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate 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(float value) |
boolean |
containsAll(float... source) |
boolean |
containsAll(org.eclipse.collections.api.FloatIterable source) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate) |
float |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate,
float ifNone) |
void |
each(org.eclipse.collections.api.block.procedure.primitive.FloatProcedure procedure) |
org.eclipse.collections.api.iterator.FloatIterator |
floatIterator() |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectFloatToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
float |
max() |
float |
maxIfEmpty(float defaultValue) |
double |
median() |
float |
min() |
float |
minIfEmpty(float defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate) |
boolean |
notEmpty() |
int |
size() |
double |
sum() |
float[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableFloatBag |
toBag() |
org.eclipse.collections.api.list.primitive.MutableFloatList |
toList() |
org.eclipse.collections.api.set.primitive.MutableFloatSet |
toSet() |
float[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableFloatList |
toSortedList() |
String |
toString() |
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, selectpublic LazyFloatIterableAdapter(org.eclipse.collections.api.FloatIterable delegate)
public org.eclipse.collections.api.iterator.FloatIterator floatIterator()
public void each(org.eclipse.collections.api.block.procedure.primitive.FloatProcedure procedure)
public int size()
size in interface org.eclipse.collections.api.PrimitiveIterablesize in class AbstractLazyFloatIterablepublic boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterableisEmpty in class AbstractLazyFloatIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablenotEmpty in class AbstractLazyFloatIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate)
count in interface org.eclipse.collections.api.FloatIterablecount in class AbstractLazyFloatIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate)
anySatisfy in interface org.eclipse.collections.api.FloatIterableanySatisfy in class AbstractLazyFloatIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate)
allSatisfy in interface org.eclipse.collections.api.FloatIterableallSatisfy in class AbstractLazyFloatIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.FloatIterablenoneSatisfy in class AbstractLazyFloatIterablepublic float detectIfNone(org.eclipse.collections.api.block.predicate.primitive.FloatPredicate predicate,
float ifNone)
detectIfNone in interface org.eclipse.collections.api.FloatIterabledetectIfNone in class AbstractLazyFloatIterablepublic double sum()
sum in interface org.eclipse.collections.api.FloatIterablesum in class AbstractLazyFloatIterablepublic float max()
max in interface org.eclipse.collections.api.FloatIterablemax in class AbstractLazyFloatIterablepublic float min()
min in interface org.eclipse.collections.api.FloatIterablemin in class AbstractLazyFloatIterablepublic float minIfEmpty(float defaultValue)
minIfEmpty in interface org.eclipse.collections.api.FloatIterableminIfEmpty in class AbstractLazyFloatIterablepublic float maxIfEmpty(float defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.FloatIterablemaxIfEmpty in class AbstractLazyFloatIterablepublic double average()
average in interface org.eclipse.collections.api.FloatIterableaverage in class AbstractLazyFloatIterablepublic double median()
median in interface org.eclipse.collections.api.FloatIterablemedian in class AbstractLazyFloatIterablepublic float[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.FloatIterabletoSortedArray in class AbstractLazyFloatIterablepublic org.eclipse.collections.api.list.primitive.MutableFloatList toSortedList()
toSortedList in interface org.eclipse.collections.api.FloatIterabletoSortedList in class AbstractLazyFloatIterablepublic float[] toArray()
toArray in interface org.eclipse.collections.api.FloatIterabletoArray in class AbstractLazyFloatIterablepublic String toString()
toString in interface org.eclipse.collections.api.PrimitiveIterabletoString in class AbstractLazyFloatIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyFloatIterablepublic boolean contains(float value)
contains in interface org.eclipse.collections.api.FloatIterablecontains in class AbstractLazyFloatIterablepublic boolean containsAll(float... source)
containsAll in interface org.eclipse.collections.api.FloatIterablecontainsAll in class AbstractLazyFloatIterablepublic boolean containsAll(org.eclipse.collections.api.FloatIterable source)
containsAll in interface org.eclipse.collections.api.FloatIterablecontainsAll in class AbstractLazyFloatIterablepublic org.eclipse.collections.api.list.primitive.MutableFloatList toList()
toList in interface org.eclipse.collections.api.FloatIterabletoList in class AbstractLazyFloatIterablepublic org.eclipse.collections.api.set.primitive.MutableFloatSet toSet()
toSet in interface org.eclipse.collections.api.FloatIterabletoSet in class AbstractLazyFloatIterablepublic org.eclipse.collections.api.bag.primitive.MutableFloatBag toBag()
toBag in interface org.eclipse.collections.api.FloatIterabletoBag in class AbstractLazyFloatIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectFloatToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.FloatIterableinjectInto in class AbstractLazyFloatIterableCopyright © 2004–2018. All rights reserved.