Class AbstractLazyBooleanIterable
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.primitive.AbstractLazyBooleanIterable
-
- All Implemented Interfaces:
BooleanIterable,LazyBooleanIterable,PrimitiveIterable
- Direct Known Subclasses:
CollectBooleanIterable,CollectBooleanToBooleanIterable,CollectByteToBooleanIterable,CollectCharToBooleanIterable,CollectDoubleToBooleanIterable,CollectFloatToBooleanIterable,CollectIntToBooleanIterable,CollectLongToBooleanIterable,CollectShortToBooleanIterable,LazyBooleanIterableAdapter,ReverseBooleanIterable,SelectBooleanIterable,TapBooleanIterable
public abstract class AbstractLazyBooleanIterable extends Object implements LazyBooleanIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.- Since:
- 5.0
-
-
Constructor Summary
Constructors Constructor Description AbstractLazyBooleanIterable()
-
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.BooleanIterable
booleanIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, each, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, reduce, reduceIfEmpty, reject, select, toArray
-
-
-
-
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(boolean value)
- Specified by:
containsin interfaceBooleanIterable
-
containsAll
public boolean containsAll(boolean... source)
- Specified by:
containsAllin interfaceBooleanIterable
-
containsAll
public boolean containsAll(BooleanIterable source)
- Specified by:
containsAllin interfaceBooleanIterable
-
select
public LazyBooleanIterable select(BooleanPredicate predicate)
- Specified by:
selectin interfaceBooleanIterable- Specified by:
selectin interfaceLazyBooleanIterable
-
reject
public LazyBooleanIterable reject(BooleanPredicate predicate)
- Specified by:
rejectin interfaceBooleanIterable- Specified by:
rejectin interfaceLazyBooleanIterable
-
tap
public LazyBooleanIterable tap(BooleanProcedure procedure)
- Specified by:
tapin interfaceBooleanIterable- Specified by:
tapin interfaceLazyBooleanIterable
-
collect
public <V> LazyIterable<V> collect(BooleanToObjectFunction<? extends V> function)
- Specified by:
collectin interfaceBooleanIterable- Specified by:
collectin interfaceLazyBooleanIterable
-
flatCollect
public <V> LazyIterable<V> flatCollect(BooleanToObjectFunction<? extends Iterable<V>> function)
- Specified by:
flatCollectin interfaceLazyBooleanIterable
-
collectBoolean
public LazyBooleanIterable collectBoolean(BooleanToBooleanFunction function)
- Specified by:
collectBooleanin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectByte
public LazyByteIterable collectByte(BooleanToByteFunction function)
- Specified by:
collectBytein interfaceLazyBooleanIterable- Since:
- 7.0
-
collectChar
public LazyCharIterable collectChar(BooleanToCharFunction function)
- Specified by:
collectCharin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectShort
public LazyShortIterable collectShort(BooleanToShortFunction function)
- Specified by:
collectShortin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectInt
public LazyIntIterable collectInt(BooleanToIntFunction function)
- Specified by:
collectIntin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectFloat
public LazyFloatIterable collectFloat(BooleanToFloatFunction function)
- Specified by:
collectFloatin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectLong
public LazyLongIterable collectLong(BooleanToLongFunction function)
- Specified by:
collectLongin interfaceLazyBooleanIterable- Since:
- 7.0
-
collectDouble
public LazyDoubleIterable collectDouble(BooleanToDoubleFunction function)
- Specified by:
collectDoublein interfaceLazyBooleanIterable- Since:
- 7.0
-
detectIfNone
public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone)
- Specified by:
detectIfNonein interfaceBooleanIterable
-
count
public int count(BooleanPredicate predicate)
- Specified by:
countin interfaceBooleanIterable
-
anySatisfy
public boolean anySatisfy(BooleanPredicate predicate)
- Specified by:
anySatisfyin interfaceBooleanIterable
-
allSatisfy
public boolean allSatisfy(BooleanPredicate predicate)
- Specified by:
allSatisfyin interfaceBooleanIterable
-
noneSatisfy
public boolean noneSatisfy(BooleanPredicate predicate)
- Specified by:
noneSatisfyin interfaceBooleanIterable
-
injectInto
public <T> T injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)- Specified by:
injectIntoin interfaceBooleanIterable
-
chunk
public RichIterable<BooleanIterable> chunk(int size)
- Specified by:
chunkin interfaceBooleanIterable
-
toArray
public boolean[] toArray()
- Specified by:
toArrayin interfaceBooleanIterable
-
toList
public MutableBooleanList toList()
- Specified by:
toListin interfaceBooleanIterable
-
toSet
public MutableBooleanSet toSet()
- Specified by:
toSetin interfaceBooleanIterable
-
toBag
public MutableBooleanBag toBag()
- Specified by:
toBagin interfaceBooleanIterable
-
asLazy
public LazyBooleanIterable asLazy()
- Specified by:
asLazyin interfaceBooleanIterable
-
-