Uses of Interface
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure
-
Packages that use ObjectIntProcedure Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.block.procedure This package contains interfaces for Procedure API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.org.eclipse.collections.impl.block.procedure.checked This package contains abstract implementations ofProcedureandProcedure2.org.eclipse.collections.impl.block.procedure.checked.primitive This package contains abstract implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list This package contains implementations of theListIterableinterface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMapinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategys provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategys provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.set.strategy.immutable This package contains implementations of immutable sets with user definedHashingStrategys.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of ObjectIntProcedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntProcedure Modifier and Type Method Description voidInternalIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)Deprecated.in 6.0. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ObjectIntProcedure Modifier and Type Method Description voidBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)For each distinct item, with the number of occurrences, execute the specified procedure.voidParallelBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.api.block.procedure
Subinterfaces of ObjectIntProcedure in org.eclipse.collections.api.block.procedure Modifier and Type Interface Description interfaceObjectIntProcedure<T>Deprecated.since 3.0 useObjectIntProcedureinstead. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntProcedure Modifier and Type Method Description voidObjectIntMap. forEachKeyValue(ObjectIntProcedure<? super K> procedure)Iterates through each key/value pair in the map, invoking the procedure for each. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ObjectIntProcedure Modifier and Type Method Description voidOrderedIterable. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the section of the iterable covered by the specified inclusive indexes.voidOrderedIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the iterable passing each element and the current relative int index to the specified instance of ObjectIntProceduredefault voidReversibleIterable. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)Evaluates the procedure for each element and it's index in reverse order. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractRichIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableRichIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableEmptyBag. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableHashBag. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableSingletonBag. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableArrayBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptyBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableHashBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableSingletonBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractHashBag. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractHashBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure)voidMultiReaderHashBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidMultiReaderHashBag.UntouchableMutableBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidSynchronizedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableBag. forEachWithOccurrences(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableEmptySortedBag. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableSortedBagImpl. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableSortedBagImpl. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptySortedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidImmutableSortedBagImpl. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidSynchronizedSortedBag. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidTreeBag. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidTreeBag. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableSortedBag. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidSynchronizedSortedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidTreeBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidUnmodifiableSortedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidSynchronizedSortedBag. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidUnmodifiableSortedBag. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractBiMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidUnmodifiableBiMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ObjectIntProcedure Modifier and Type Class Description private static classFunctions.BindObjectIntProcedure<T1,T2>private static classObjectIntProcedures.ProcedureAdapter<T>Fields in org.eclipse.collections.impl.block.factory declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super T2>Functions.BindObjectIntProcedure. delegateprivate ObjectIntProcedure<? super T>Procedures.ObjectIntProcedureAdapter. objectIntProcedureMethods in org.eclipse.collections.impl.block.factory that return ObjectIntProcedure Modifier and Type Method Description static <T1,T2>
ObjectIntProcedure<T1>Functions. bind(ObjectIntProcedure<? super T2> delegate, Function<? super T1,T2> function)Bind the input of a ObjectIntProcedure to the result of a function, returning a new ObjectIntProcedure.static <T> ObjectIntProcedure<T>ObjectIntProcedures. fromProcedure(Procedure<? super T> procedure)Methods in org.eclipse.collections.impl.block.factory with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T1,T2>
ObjectIntProcedure<T1>Functions. bind(ObjectIntProcedure<? super T2> delegate, Function<? super T1,T2> function)Bind the input of a ObjectIntProcedure to the result of a function, returning a new ObjectIntProcedure.static <T> Procedure<T>Procedures. fromObjectIntProcedure(ObjectIntProcedure<? super T> objectIntProcedure)static <T> Procedure<T>Procedures. fromProcedureWithInt(ObjectIntProcedure<? super T> objectIntProcedure)Deprecated.since 1.2 - InlineableConstructors in org.eclipse.collections.impl.block.factory with parameters of type ObjectIntProcedure Constructor Description BindObjectIntProcedure(ObjectIntProcedure<? super T2> delegate, Function<? super T1,T2> function)ObjectIntProcedureAdapter(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure
Classes in org.eclipse.collections.impl.block.procedure that implement ObjectIntProcedure Modifier and Type Class Description classBagAddOccurrencesProcedure<T>Fields in org.eclipse.collections.impl.block.procedure declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super V>AdaptObjectIntProcedureToProcedure. objectIntProcedureprivate ObjectIntProcedure<? super T>IfObjectIntProcedure. objectIntProcedureConstructors in org.eclipse.collections.impl.block.procedure with parameters of type ObjectIntProcedure Constructor Description AdaptObjectIntProcedureToProcedure(ObjectIntProcedure<? super V> objectIntProcedure)IfObjectIntProcedure(Predicate<? super T> newPredicate, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked
Classes in org.eclipse.collections.impl.block.procedure.checked that implement ObjectIntProcedure Modifier and Type Class Description classCheckedObjectIntProcedure<T> -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked.primitive
Classes in org.eclipse.collections.impl.block.procedure.checked.primitive that implement ObjectIntProcedure Modifier and Type Class Description classCheckedObjectIntProcedure<V>This file was automatically generated from template file checkedObjectPrimitiveProcedure.stg. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractSynchronizedRichIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractCollectionAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractMultiReaderMutableCollection. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractMultiReaderMutableCollection.UntouchableMutableCollection. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractUnmodifiableMutableCollection. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.forkjoin
Classes in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedure Modifier and Type Class Description classFJListObjectIntProcedureRunner<T,PT extends ObjectIntProcedure<? super T>>classFJListObjectIntProcedureTask<T,PT extends ObjectIntProcedure<? super T>>Fields in org.eclipse.collections.impl.forkjoin declared as ObjectIntProcedure Modifier and Type Field Description private PTFJListObjectIntProcedureTask. procedureMethods in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedure Modifier and Type Method Description static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount)static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, java.util.concurrent.ForkJoinPool executor)static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, java.util.concurrent.ForkJoinPool executor)static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, PT procedure, int minForkSize, int taskCount)Iterate over the collection specified in parallel batches.static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, PT procedure, java.util.concurrent.ForkJoinPool executor)Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndexInListOnExecutor(java.util.List<T> list, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, java.util.concurrent.ForkJoinPool executor)Methods in org.eclipse.collections.impl.forkjoin with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedure<? super T> procedure)Iterate over the collection specified, in parallel batches using default runtime parameter values. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type ObjectIntProcedure Modifier and Type Method Description voidCollectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCompositeIterable. forEachWithIndex(ObjectIntProcedure<? super E> objectIntProcedure)voidDistinctIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidDropIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidDropWhileIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidFlatCollectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidLazyIterableAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidRejectIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidReverseIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSelectInstancesOfIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSelectIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidTakeIterable. forEachWithIndex(ObjectIntProcedure<? super T> procedure)voidTakeWhileIterable. forEachWithIndex(ObjectIntProcedure<? super T> procedure)voidTapIterable. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ObjectIntProcedure Modifier and Type Class Description private static classSelectUnsortedBagBatch.IfProcedureWithOccurrences<T>Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super T>SelectUnsortedBagBatch.IfProcedureWithOccurrences. procedureMethods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedure Modifier and Type Method Description voidCollectUnsortedBagBatch. forEachWithOccurrences(ObjectIntProcedure<? super V> procedure)voidFlatCollectUnsortedBagBatch. forEachWithOccurrences(ObjectIntProcedure<? super V> procedure)voidNonParallelUnsortedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidParallelCollectUnsortedBag. forEachWithOccurrences(ObjectIntProcedure<? super V> procedure)voidParallelSelectUnsortedBag. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidSelectUnsortedBagBatch. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)voidUnsortedBagBatch. forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedure Constructor Description IfProcedureWithOccurrences(Predicate<? super T> predicate, ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ObjectIntProcedure Modifier and Type Method Description voidCollectBooleanToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectByteToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectCharToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectDoubleToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectFloatToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectIntToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectLongToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCollectShortToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectBooleanToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectByteToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectCharToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectDoubleToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectFloatToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectIntToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectLongToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFlatCollectShortToObjectIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list with parameters of type ObjectIntProcedure Modifier and Type Method Description voidInterval. forEachWithIndex(ObjectIntProcedure<? super java.lang.Integer> objectIntProcedure)voidInterval. forEachWithIndex(ObjectIntProcedure<? super java.lang.Integer> objectIntProcedure, int startIndex, int endIndex) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractArrayAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractArrayAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidDoubletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidEmptyList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidQuadrupletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidQuintupletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSextupletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSingletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidTripletonList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractImmutableList. forEachWithIndex(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractImmutableList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractImmutableList.ImmutableSubList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableArrayList. forEachWithIndex(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableArrayList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptyList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptyList. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super E>CompositeFastList.ProcedureToInnerListObjectIntProcedure. objectIntProcedureprivate ObjectIntProcedure<? super E>CompositeFastList.ProcedureToReverseInnerListObjectIntProcedure. objectIntProcedureMethods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractMutableList. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidAbstractMutableList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidArrayListAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidArrayListAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidCompositeFastList. forEachWithIndex(ObjectIntProcedure<? super E> objectIntProcedure)voidFastList. forEachWithIndex(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)voidFastList. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidListAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidListAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidMultiReaderFastList. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidMultiReaderFastList.UntouchableMutableList. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidRandomAccessListAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidRandomAccessListAdapter. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSynchronizedMutableList. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableMutableList. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidArrayListAdapter. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidCompositeFastList. reverseForEachWithIndex(ObjectIntProcedure<? super E> procedure)voidListAdapter. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidMultiReaderFastList. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidMultiReaderFastList.UntouchableMutableList. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidRandomAccessListAdapter. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidSynchronizedMutableList. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidUnmodifiableMutableList. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)Constructors in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedure Constructor Description ProcedureToInnerListObjectIntProcedure(ObjectIntProcedure<? super E> objectIntProcedure)ProcedureToReverseInnerListObjectIntProcedure(ObjectIntProcedure<? super E> objectIntProcedure, int size) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractMapIterable. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.fixed
Methods in org.eclipse.collections.impl.map.fixed with parameters of type ObjectIntProcedure Modifier and Type Method Description voidDoubletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidTripletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableDoubletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableQuadrupletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableTripletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableUnifiedMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableObjectIntEmptyMap. forEachKeyValue(ObjectIntProcedure<? super K> objectIntProcedure)voidImmutableObjectIntHashMap. forEachKeyValue(ObjectIntProcedure<? super K> objectIntProcedure)voidImmutableObjectIntSingletonMap. forEachKeyValue(ObjectIntProcedure<? super K> objectIntProcedure)voidImmutableByteObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableByteObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableByteObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableCharObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableCharObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableCharObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableDoubleObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableDoubleObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableDoubleObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableFloatObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableFloatObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableFloatObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableIntObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableIntObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableIntObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableLongObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableLongObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableLongObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableShortObjectEmptyMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableShortObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableShortObjectSingletonMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description private intUnifiedMap. chainedForEachValueWithIndex(java.lang.Object[] chain, ObjectIntProcedure<? super V> objectIntProcedure, int index)voidConcurrentHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidConcurrentHashMapUnsafe. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidConcurrentMutableHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)Deprecated.voidUnifiedMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableMutableMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntProcedure Modifier and Type Method Description voidObjectIntHashMap. forEachKeyValue(ObjectIntProcedure<? super K> procedure)voidObjectIntHashMapWithHashingStrategy. forEachKeyValue(ObjectIntProcedure<? super K> procedure)voidSynchronizedObjectIntMap. forEachKeyValue(ObjectIntProcedure<? super K> procedure)voidUnmodifiableObjectIntMap. forEachKeyValue(ObjectIntProcedure<? super K> procedure)voidByteBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteBooleanPair> objectIntProcedure)voidByteByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteBytePair> objectIntProcedure)voidByteCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteCharPair> objectIntProcedure)voidByteDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteDoublePair> objectIntProcedure)voidByteFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteFloatPair> objectIntProcedure)voidByteIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteIntPair> objectIntProcedure)voidByteLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteLongPair> objectIntProcedure)voidByteObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidByteObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteObjectPair<V>> objectIntProcedure)voidByteShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteShortPair> objectIntProcedure)voidCharBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharBooleanPair> objectIntProcedure)voidCharByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharBytePair> objectIntProcedure)voidCharCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharCharPair> objectIntProcedure)voidCharDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharDoublePair> objectIntProcedure)voidCharFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharFloatPair> objectIntProcedure)voidCharIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharIntPair> objectIntProcedure)voidCharLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharLongPair> objectIntProcedure)voidCharObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidCharObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharObjectPair<V>> objectIntProcedure)voidCharShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super CharShortPair> objectIntProcedure)voidDoubleBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleBooleanPair> objectIntProcedure)voidDoubleByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleBytePair> objectIntProcedure)voidDoubleCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleCharPair> objectIntProcedure)voidDoubleDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleDoublePair> objectIntProcedure)voidDoubleFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleFloatPair> objectIntProcedure)voidDoubleIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleIntPair> objectIntProcedure)voidDoubleLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleLongPair> objectIntProcedure)voidDoubleObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidDoubleObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleObjectPair<V>> objectIntProcedure)voidDoubleShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super DoubleShortPair> objectIntProcedure)voidFloatBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatBooleanPair> objectIntProcedure)voidFloatByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatBytePair> objectIntProcedure)voidFloatCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatCharPair> objectIntProcedure)voidFloatDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatDoublePair> objectIntProcedure)voidFloatFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatFloatPair> objectIntProcedure)voidFloatIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatIntPair> objectIntProcedure)voidFloatLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatLongPair> objectIntProcedure)voidFloatObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidFloatObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatObjectPair<V>> objectIntProcedure)voidFloatShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super FloatShortPair> objectIntProcedure)voidIntBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntBooleanPair> objectIntProcedure)voidIntByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntBytePair> objectIntProcedure)voidIntCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntCharPair> objectIntProcedure)voidIntDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntDoublePair> objectIntProcedure)voidIntFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntFloatPair> objectIntProcedure)voidIntIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntIntPair> objectIntProcedure)voidIntLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntLongPair> objectIntProcedure)voidIntObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidIntObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntObjectPair<V>> objectIntProcedure)voidIntShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super IntShortPair> objectIntProcedure)voidLongBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongBooleanPair> objectIntProcedure)voidLongByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongBytePair> objectIntProcedure)voidLongCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongCharPair> objectIntProcedure)voidLongDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongDoublePair> objectIntProcedure)voidLongFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongFloatPair> objectIntProcedure)voidLongIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongIntPair> objectIntProcedure)voidLongLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongLongPair> objectIntProcedure)voidLongObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidLongObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongObjectPair<V>> objectIntProcedure)voidLongShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongShortPair> objectIntProcedure)voidObjectBooleanHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectIntProcedure)voidObjectBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectBooleanPair<K>> objectIntProcedure)voidObjectBooleanHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectIntProcedure)voidObjectBooleanHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectBooleanPair<K>> objectIntProcedure)voidObjectByteHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectByteProcedure)voidObjectByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectBytePair<K>> objectIntProcedure)voidObjectByteHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectByteProcedure)voidObjectByteHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectBytePair<K>> objectIntProcedure)voidObjectCharHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectCharProcedure)voidObjectCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectCharPair<K>> objectIntProcedure)voidObjectCharHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectCharProcedure)voidObjectCharHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectCharPair<K>> objectIntProcedure)voidObjectDoubleHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectDoubleProcedure)voidObjectDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectDoublePair<K>> objectIntProcedure)voidObjectDoubleHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectDoubleProcedure)voidObjectDoubleHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectDoublePair<K>> objectIntProcedure)voidObjectFloatHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectFloatProcedure)voidObjectFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectFloatPair<K>> objectIntProcedure)voidObjectFloatHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectFloatProcedure)voidObjectFloatHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectFloatPair<K>> objectIntProcedure)voidObjectIntHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectIntProcedure)voidObjectIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure)voidObjectIntHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectIntProcedure)voidObjectIntHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure)voidObjectLongHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectLongProcedure)voidObjectLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectLongPair<K>> objectIntProcedure)voidObjectLongHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectLongProcedure)voidObjectLongHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectLongPair<K>> objectIntProcedure)voidObjectShortHashMap.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectShortProcedure)voidObjectShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectShortPair<K>> objectIntProcedure)voidObjectShortHashMapWithHashingStrategy.KeysView. forEachWithIndex(ObjectIntProcedure<? super K> objectShortProcedure)voidObjectShortHashMapWithHashingStrategy.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ObjectShortPair<K>> objectIntProcedure)voidShortBooleanHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortBooleanPair> objectIntProcedure)voidShortByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortBytePair> objectIntProcedure)voidShortCharHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortCharPair> objectIntProcedure)voidShortDoubleHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortDoublePair> objectIntProcedure)voidShortFloatHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortFloatPair> objectIntProcedure)voidShortIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortIntPair> objectIntProcedure)voidShortLongHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortLongPair> objectIntProcedure)voidShortObjectHashMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidShortObjectHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortObjectPair<V>> objectIntProcedure)voidShortShortHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ShortShortPair> objectIntProcedure)voidSynchronizedByteObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedCharObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedDoubleObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedFloatObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedIntObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedLongObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedShortObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableByteObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableCharObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableDoubleObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableFloatObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableIntObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableLongObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableShortObjectMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableOrderedMapAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableOrderedMapAdapter. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidOrderedMapAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableMutableOrderedMap. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableMutableOrderedMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableMutableOrderedMap. reverseForEachWithIndex(ObjectIntProcedure<? super V> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractImmutableSortedMap. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableEmptySortedMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidAbstractMutableSortedMap. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedSortedMap. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableTreeMap. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure)voidUnmodifiableTreeMap. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidSynchronizedSortedMap. reverseForEachWithIndex(ObjectIntProcedure<? super V> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.strategy.immutable
Methods in org.eclipse.collections.impl.map.strategy.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableEmptyMapWithHashingStrategy. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure)voidImmutableUnifiedMapWithHashingStrategy. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description private intUnifiedMapWithHashingStrategy. chainedForEachValueWithIndex(java.lang.Object[] chain, ObjectIntProcedure<? super V> objectIntProcedure, int index)voidUnifiedMapWithHashingStrategy. forEachWithIndex(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.parallel
Classes in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedure Modifier and Type Interface Description interfaceObjectIntProcedureFactory<T extends ObjectIntProcedure<?>>ObjectIntProcedureFactory is used by parallel iterators as a factory for stateful ObjectIntProcedure instances.classObjectIntProcedureFJTask<T,BT extends ObjectIntProcedure<? super T>>classObjectIntProcedureFJTaskRunner<T,BT extends ObjectIntProcedure<? super T>>classPassThruObjectIntProcedureFactory<BT extends ObjectIntProcedure<?>>This class acts as a no op factory for a ObjectIntProcedure which gets passed in and returned out.Fields in org.eclipse.collections.impl.parallel declared as ObjectIntProcedure Modifier and Type Field Description private BTObjectIntProcedureFJTask. procedureprivate BTPassThruObjectIntProcedureFactory. procedureMethods in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedure Modifier and Type Method Description static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, BT procedure, int minForkSize, int taskCount)Iterate over the collection specified in parallel batches.static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, BT procedure, java.util.concurrent.Executor executor)Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount)static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, java.util.concurrent.Executor executor)static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, java.util.concurrent.Executor executor)static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndexInListOnExecutor(java.util.List<T> list, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, java.util.concurrent.Executor executor)Methods in org.eclipse.collections.impl.parallel with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure)Iterate over the collection specified, in parallel batches using default runtime parameter values. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type ObjectIntProcedure Modifier and Type Method Description voidDoubletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidEmptySet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidQuadrupletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSingletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidTripletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableDoubletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptySet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableQuadrupletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableSingletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableTripletonSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description private intUnifiedSet. chainedForEachWithIndex(UnifiedSet.ChainedBucket bucket, ObjectIntProcedure<? super T> procedure, int count)voidUnifiedSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableEmptySortedSet. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptySortedSet. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableTreeSet. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidSortedSetAdapter. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidSynchronizedSortedSet. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidTreeSortedSet. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableSortedSet. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidSortedSetAdapter. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidSynchronizedSortedSet. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidTreeSortedSet. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)voidUnmodifiableSortedSet. reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.strategy.immutable
Methods in org.eclipse.collections.impl.set.strategy.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableEmptySetWithHashingStrategy. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description private intUnifiedSetWithHashingStrategy. chainedForEachWithIndex(UnifiedSetWithHashingStrategy.ChainedBucket bucket, ObjectIntProcedure<? super T> procedure, int count)voidUnifiedSetWithHashingStrategy. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidImmutableArrayStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)Deprecated.voidImmutableArrayStack. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)Deprecated.voidImmutableEmptyStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableEmptyStack. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidImmutableNotEmptyStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description voidArrayStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidArrayStack. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidSynchronizedStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidSynchronizedStack. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableStack. forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure)voidUnmodifiableStack. forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> voidArrayIterate. forEachWithIndex(T[] objectArray, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the section of the list covered by the specified inclusive indexes.static <T> voidArrayIterate. forEachWithIndex(T[] objectArray, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidArrayListIterate. forEachWithIndex(java.util.ArrayList<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the section of the list covered by the specified indexes.static <T> voidArrayListIterate. forEachWithIndex(java.util.ArrayList<T> list, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over a collection passing each element and the current relative int index to the specified instance of ObjectIntProcedure.static <T> voidListIterate. forEachWithIndex(java.util.List<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the section of the list covered by the specified indexes.static <T> voidListIterate. forEachWithIndex(java.util.List<T> list, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidArrayListIterate. reverseForEachWithIndex(java.util.ArrayList<T> list, ObjectIntProcedure<? super T> procedure)Reverses over the List in reverse order executing the Procedure with index for each element.static <T> voidListIterate. reverseForEachWithIndex(java.util.List<T> list, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the List in reverse order executing the Procedure for each element. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> voidInternalArrayIterate. forEachWithIndex(T[] objectArray, int size, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidIterableIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidIterableIterate. forEachWithIndex(java.util.List<T> iterable, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidIteratorIterate. forEachWithIndex(java.util.Iterator<T> iterator, ObjectIntProcedure<? super T> objectIntProcedure)static <T> voidRandomAccessListIterate. forEachWithIndex(java.util.List<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over the section of the list covered by the specified indexes.static <T> voidRandomAccessListIterate. forEachWithIndex(java.util.List<T> list, ObjectIntProcedure<? super T> objectIntProcedure)Iterates over a collection passing each element and the current relative int index to the specified instance of ObjectIntProcedure.static <T> voidInternalArrayIterate. forEachWithIndexWithoutChecks(T[] objectArray, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)
-