Class AbstractLazyFloatIterable
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.primitive.AbstractLazyFloatIterable
-
- All Implemented Interfaces:
FloatIterable,LazyFloatIterable,PrimitiveIterable
- Direct Known Subclasses:
CollectBooleanToFloatIterable,CollectByteToFloatIterable,CollectCharToFloatIterable,CollectDoubleToFloatIterable,CollectFloatIterable,CollectFloatToFloatIterable,CollectIntToFloatIterable,CollectLongToFloatIterable,CollectShortToFloatIterable,LazyFloatIterableAdapter,ReverseFloatIterable,SelectFloatIterable,TapFloatIterable
public abstract class AbstractLazyFloatIterable extends Object implements LazyFloatIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.- Since:
- 5.0
-
-
Constructor Summary
Constructors Constructor Description AbstractLazyFloatIterable()
-
Method Summary
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.FloatIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, each, flatCollect, floatIterator, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toArray, toSortedList, toSortedListBy, toSortedListBy
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfacePrimitiveIterable
-
toString
public String toString()
- Specified by:
toStringin interfacePrimitiveIterable- Overrides:
toStringin classObject
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacePrimitiveIterable
-
notEmpty
public boolean notEmpty()
- Specified by:
notEmptyin interfacePrimitiveIterable
-
makeString
public String makeString()
- Specified by:
makeStringin interfacePrimitiveIterable
-
makeString
public String makeString(String separator)
- Specified by:
makeStringin interfacePrimitiveIterable
-
makeString
public String makeString(String start, String separator, String end)
- Specified by:
makeStringin interfacePrimitiveIterable
-
appendString
public void appendString(Appendable appendable)
- Specified by:
appendStringin interfacePrimitiveIterable
-
appendString
public void appendString(Appendable appendable, String separator)
- Specified by:
appendStringin interfacePrimitiveIterable
-
appendString
public void appendString(Appendable appendable, String start, String separator, String end)
- Specified by:
appendStringin interfacePrimitiveIterable
-
contains
public boolean contains(float value)
- Specified by:
containsin interfaceFloatIterable
-
containsAll
public boolean containsAll(float... source)
- Specified by:
containsAllin interfaceFloatIterable
-
containsAll
public boolean containsAll(FloatIterable source)
- Specified by:
containsAllin interfaceFloatIterable
-
select
public LazyFloatIterable select(FloatPredicate predicate)
- Specified by:
selectin interfaceFloatIterable- Specified by:
selectin interfaceLazyFloatIterable
-
reject
public LazyFloatIterable reject(FloatPredicate predicate)
- Specified by:
rejectin interfaceFloatIterable- Specified by:
rejectin interfaceLazyFloatIterable
-
tap
public LazyFloatIterable tap(FloatProcedure procedure)
- Specified by:
tapin interfaceFloatIterable- Specified by:
tapin interfaceLazyFloatIterable
-
collect
public <V> LazyIterable<V> collect(FloatToObjectFunction<? extends V> function)
- Specified by:
collectin interfaceFloatIterable- Specified by:
collectin interfaceLazyFloatIterable
-
flatCollect
public <V> LazyIterable<V> flatCollect(FloatToObjectFunction<? extends Iterable<V>> function)
- Specified by:
flatCollectin interfaceLazyFloatIterable
-
collectBoolean
public LazyBooleanIterable collectBoolean(FloatToBooleanFunction function)
- Specified by:
collectBooleanin interfaceLazyFloatIterable- Since:
- 7.0
-
collectByte
public LazyByteIterable collectByte(FloatToByteFunction function)
- Specified by:
collectBytein interfaceLazyFloatIterable- Since:
- 7.0
-
collectChar
public LazyCharIterable collectChar(FloatToCharFunction function)
- Specified by:
collectCharin interfaceLazyFloatIterable- Since:
- 7.0
-
collectShort
public LazyShortIterable collectShort(FloatToShortFunction function)
- Specified by:
collectShortin interfaceLazyFloatIterable- Since:
- 7.0
-
collectInt
public LazyIntIterable collectInt(FloatToIntFunction function)
- Specified by:
collectIntin interfaceLazyFloatIterable- Since:
- 7.0
-
collectFloat
public LazyFloatIterable collectFloat(FloatToFloatFunction function)
- Specified by:
collectFloatin interfaceLazyFloatIterable- Since:
- 7.0
-
collectLong
public LazyLongIterable collectLong(FloatToLongFunction function)
- Specified by:
collectLongin interfaceLazyFloatIterable- Since:
- 7.0
-
collectDouble
public LazyDoubleIterable collectDouble(FloatToDoubleFunction function)
- Specified by:
collectDoublein interfaceLazyFloatIterable- Since:
- 7.0
-
detectIfNone
public float detectIfNone(FloatPredicate predicate, float ifNone)
- Specified by:
detectIfNonein interfaceFloatIterable
-
count
public int count(FloatPredicate predicate)
- Specified by:
countin interfaceFloatIterable
-
anySatisfy
public boolean anySatisfy(FloatPredicate predicate)
- Specified by:
anySatisfyin interfaceFloatIterable
-
allSatisfy
public boolean allSatisfy(FloatPredicate predicate)
- Specified by:
allSatisfyin interfaceFloatIterable
-
noneSatisfy
public boolean noneSatisfy(FloatPredicate predicate)
- Specified by:
noneSatisfyin interfaceFloatIterable
-
injectInto
public <T> T injectInto(T injectedValue, ObjectFloatToObjectFunction<? super T,? extends T> function)- Specified by:
injectIntoin interfaceFloatIterable
-
chunk
public RichIterable<FloatIterable> chunk(int size)
- Specified by:
chunkin interfaceFloatIterable
-
toArray
public float[] toArray()
- Specified by:
toArrayin interfaceFloatIterable
-
toList
public MutableFloatList toList()
- Specified by:
toListin interfaceFloatIterable
-
toSet
public MutableFloatSet toSet()
- Specified by:
toSetin interfaceFloatIterable
-
toBag
public MutableFloatBag toBag()
- Specified by:
toBagin interfaceFloatIterable
-
sum
public double sum()
- Specified by:
sumin interfaceFloatIterable
-
max
public float max()
- Specified by:
maxin interfaceFloatIterable
-
maxIfEmpty
public float maxIfEmpty(float ifEmpty)
- Specified by:
maxIfEmptyin interfaceFloatIterable
-
min
public float min()
- Specified by:
minin interfaceFloatIterable
-
minIfEmpty
public float minIfEmpty(float ifEmpty)
- Specified by:
minIfEmptyin interfaceFloatIterable
-
average
public double average()
- Specified by:
averagein interfaceFloatIterable
-
median
public double median()
- Specified by:
medianin interfaceFloatIterable
-
toSortedArray
public float[] toSortedArray()
- Specified by:
toSortedArrayin interfaceFloatIterable
-
toSortedList
public MutableFloatList toSortedList()
- Specified by:
toSortedListin interfaceFloatIterable
-
asLazy
public LazyFloatIterable asLazy()
- Specified by:
asLazyin interfaceFloatIterable
-
-