Class SelectIntIterable
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.primitive.AbstractLazyIntIterable
-
- org.eclipse.collections.impl.lazy.primitive.SelectIntIterable
-
- All Implemented Interfaces:
IntIterable,LazyIntIterable,PrimitiveIterable
public class SelectIntIterable extends AbstractLazyIntIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classSelectIntIterable.CountIntProcedureprivate classSelectIntIterable.IfIntProcedureprivate static classSelectIntIterable.SelectIntIterator
-
Field Summary
Fields Modifier and Type Field Description private IntIterabledelegateprivate IntPredicatepredicate
-
Constructor Summary
Constructors Constructor Description SelectIntIterable(IntIterable delegate, IntPredicate predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanallSatisfy(IntPredicate predicate)Returns true if all of the elements in the IntIterable return true for the specified predicate, otherwise returns false.booleananySatisfy(IntPredicate predicate)Returns true if any of the elements in the IntIterable return true for the specified predicate, otherwise returns false.booleancontainsAll(int... source)Returns true if all of the values specified in the source array are contained in the IntIterable, and false if they are not.booleancontainsAll(IntIterable source)Returns true if all of the values specified in the source IntIterable are contained in the IntIterable, and false if they are not.intcount(IntPredicate predicate)Returns a count of the number of elements in the IntIterable that return true for the specified predicate.voideach(IntProcedure procedure)A synonym for forEach.IntIteratorintIterator()Returns a primitive iterator that can be used to iterate over the IntIterable in an imperative style.booleanisEmpty()Returns true if this iterable has zero items.booleannotEmpty()The English equivalent of !this.isEmpty()intsize()Returns the number of items in this iterable.int[]toArray()Converts the IntIterable to a primitive int array.MutableIntBagtoBag()Converts the IntIterable to a new MutableIntBag.MutableIntListtoList()Converts the IntIterable to a new MutableIntList.MutableIntSettoSet()Converts the IntIterable to a new MutableIntSet.-
Methods inherited from class org.eclipse.collections.impl.lazy.primitive.AbstractLazyIntIterable
appendString, appendString, appendString, asLazy, average, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, detectIfNone, flatCollect, injectInto, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, tap, toSortedArray, toSortedList, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.IntIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toArray, toSortedList, toSortedListBy, toSortedListBy
-
-
-
-
Field Detail
-
delegate
private final IntIterable delegate
-
predicate
private final IntPredicate predicate
-
-
Constructor Detail
-
SelectIntIterable
public SelectIntIterable(IntIterable delegate, IntPredicate predicate)
-
-
Method Detail
-
intIterator
public IntIterator intIterator()
Description copied from interface:IntIterableReturns a primitive iterator that can be used to iterate over the IntIterable in an imperative style.
-
each
public void each(IntProcedure procedure)
Description copied from interface:IntIterableA synonym for forEach.- Since:
- 7.0.
-
size
public int size()
Description copied from interface:PrimitiveIterableReturns the number of items in this iterable.- Specified by:
sizein interfacePrimitiveIterable- Overrides:
sizein classAbstractLazyIntIterable
-
isEmpty
public boolean isEmpty()
Description copied from interface:PrimitiveIterableReturns true if this iterable has zero items.- Specified by:
isEmptyin interfacePrimitiveIterable- Overrides:
isEmptyin classAbstractLazyIntIterable
-
notEmpty
public boolean notEmpty()
Description copied from interface:PrimitiveIterableThe English equivalent of !this.isEmpty()- Specified by:
notEmptyin interfacePrimitiveIterable- Overrides:
notEmptyin classAbstractLazyIntIterable
-
count
public int count(IntPredicate predicate)
Description copied from interface:IntIterableReturns a count of the number of elements in the IntIterable that return true for the specified predicate.- Specified by:
countin interfaceIntIterable- Overrides:
countin classAbstractLazyIntIterable
-
anySatisfy
public boolean anySatisfy(IntPredicate predicate)
Description copied from interface:IntIterableReturns true if any of the elements in the IntIterable return true for the specified predicate, otherwise returns false.- Specified by:
anySatisfyin interfaceIntIterable- Overrides:
anySatisfyin classAbstractLazyIntIterable
-
allSatisfy
public boolean allSatisfy(IntPredicate predicate)
Description copied from interface:IntIterableReturns true if all of the elements in the IntIterable return true for the specified predicate, otherwise returns false.- Specified by:
allSatisfyin interfaceIntIterable- Overrides:
allSatisfyin classAbstractLazyIntIterable
-
toArray
public int[] toArray()
Description copied from interface:IntIterableConverts the IntIterable to a primitive int array.- Specified by:
toArrayin interfaceIntIterable- Overrides:
toArrayin classAbstractLazyIntIterable
-
containsAll
public boolean containsAll(int... source)
Description copied from interface:IntIterableReturns true if all of the values specified in the source array are contained in the IntIterable, and false if they are not.- Specified by:
containsAllin interfaceIntIterable- Overrides:
containsAllin classAbstractLazyIntIterable
-
containsAll
public boolean containsAll(IntIterable source)
Description copied from interface:IntIterableReturns true if all of the values specified in the source IntIterable are contained in the IntIterable, and false if they are not.- Specified by:
containsAllin interfaceIntIterable- Overrides:
containsAllin classAbstractLazyIntIterable
-
toList
public MutableIntList toList()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntList.- Specified by:
toListin interfaceIntIterable- Overrides:
toListin classAbstractLazyIntIterable
-
toSet
public MutableIntSet toSet()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntSet.- Specified by:
toSetin interfaceIntIterable- Overrides:
toSetin classAbstractLazyIntIterable
-
toBag
public MutableIntBag toBag()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntBag.- Specified by:
toBagin interfaceIntIterable- Overrides:
toBagin classAbstractLazyIntIterable
-
-