Uses of Interface
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure
Packages that use ObjectIntProcedure
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for Procedure API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of
MutableSortedBag.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of
Procedure and Procedure2.This package contains abstract implementations of
Procedure and Procedure2.This package contains abstract implementations of primitive procedures.
This package contains implementations of the
MutableCollection interface.This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
This package contains implementations of the
LazyIterable interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
ListIterable interface.This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the
MapIterable interface.This package contains implementations of the
FixedSizeMap interface.This package contains implementations of the
ImmutableMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains classes which is used for parallel iteration through the containers.
This package contains implementations of
FixedSizeSet.This package contains the implementations of
ImmutableSet.This package contains implementations of
MutableSet.This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of immutable sets with user defined
HashingStrategys.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidInternalIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidBag.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.procedureModifier and TypeInterfaceDescriptioninterfaceDeprecated.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidObjectIntMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidOrderedIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractRichIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableEmptyBag.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractHashBag.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableEmptySortedBag.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidSynchronizedSortedBag.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractBiMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidUnmodifiableBiMap.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 ObjectIntProcedureModifier and TypeClassDescriptionprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure<? super T2> Functions.BindObjectIntProcedure.delegateprivate final ObjectIntProcedure<? super T> Procedures.ObjectIntProcedureAdapter.objectIntProcedureMethods in org.eclipse.collections.impl.block.factory that return ObjectIntProcedureModifier and TypeMethodDescriptionstatic <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 ObjectIntProcedureModifier and TypeMethodDescriptionstatic <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 ObjectIntProcedureModifierConstructorDescriptionprivateBindObjectIntProcedure(ObjectIntProcedure<? super T2> delegate, Function<? super T1, T2> function) privateObjectIntProcedureAdapter(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure
Classes in org.eclipse.collections.impl.block.procedure that implement ObjectIntProcedureFields in org.eclipse.collections.impl.block.procedure declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure<? super V> AdaptObjectIntProcedureToProcedure.objectIntProcedureprivate final ObjectIntProcedure<? super T> IfObjectIntProcedure.objectIntProcedureConstructors in org.eclipse.collections.impl.block.procedure with parameters of type ObjectIntProcedureModifierConstructorDescriptionAdaptObjectIntProcedureToProcedure(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 -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked.primitive
Classes in org.eclipse.collections.impl.block.procedure.checked.primitive that implement ObjectIntProcedureModifier and TypeClassDescriptionclassThis 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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractSynchronizedRichIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractCollectionAdapter.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 ObjectIntProcedureModifier and TypeClassDescriptionclassFJListObjectIntProcedureRunner<T, PT extends ObjectIntProcedure<? super T>>classFJListObjectIntProcedureTask<T, PT extends ObjectIntProcedure<? super T>>Fields in org.eclipse.collections.impl.forkjoin declared as ObjectIntProcedureMethods in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T, PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount) static <T, PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, ForkJoinPool executor) static <T, PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, ForkJoinPool executor) static <T, PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex(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(Iterable<T> iterable, PT procedure, ForkJoinPool executor) Iterate over the collection specified in parallel batches using the default runtime parameters.static <T, PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndexInListOnExecutor(List<T> list, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, ForkJoinPool executor) Methods in org.eclipse.collections.impl.forkjoin with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> voidFJIterate.forEachWithIndex(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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidCollectIterable.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 ObjectIntProcedureModifier and TypeClassDescriptionprivate static final classFields in org.eclipse.collections.impl.lazy.parallel.bag declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure<? super T> SelectUnsortedBagBatch.IfProcedureWithOccurrences.procedureMethods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidCollectUnsortedBagBatch.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 ObjectIntProcedureModifierConstructorDescriptionprivateIfProcedureWithOccurrences(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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidCollectBooleanToObjectIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidInterval.forEachWithIndex(ObjectIntProcedure<? super Integer> objectIntProcedure) voidInterval.forEachWithIndex(ObjectIntProcedure<? super 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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractArrayAdapter.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractImmutableList.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 ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure<? super E> CompositeFastList.ProcedureToInnerListObjectIntProcedure.objectIntProcedureprivate final ObjectIntProcedure<? super E> CompositeFastList.ProcedureToReverseInnerListObjectIntProcedure.objectIntProcedureMethods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractMutableList.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 ObjectIntProcedureModifierConstructorDescriptionprivateProcedureToInnerListObjectIntProcedure(ObjectIntProcedure<? super E> objectIntProcedure) privateProcedureToReverseInnerListObjectIntProcedure(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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractMapIterable.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidDoubletonMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableDoubletonMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableObjectIntEmptyMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionprivate intUnifiedMap.chainedForEachValueWithIndex(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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidObjectIntHashMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableOrderedMapAdapter.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidOrderedMapAdapter.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractImmutableSortedMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidAbstractMutableSortedMap.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableEmptyMapWithHashingStrategy.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 ObjectIntProcedureModifier and TypeMethodDescriptionprivate intUnifiedMapWithHashingStrategy.chainedForEachValueWithIndex(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 ObjectIntProcedureModifier and TypeInterfaceDescriptioninterfaceObjectIntProcedureFactory<T extends ObjectIntProcedure<?>>ObjectIntProcedureFactory is used by parallel iterators as a factory for stateful ObjectIntProcedure instances.final classObjectIntProcedureFJTask<T, BT extends ObjectIntProcedure<? super T>>final classObjectIntProcedureFJTaskRunner<T, BT extends ObjectIntProcedure<? super T>>final 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 ObjectIntProcedureModifier and TypeFieldDescriptionprivate BTObjectIntProcedureFJTask.procedureprivate final BTPassThruObjectIntProcedureFactory.procedureMethods in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T, BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex(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(Iterable<T> iterable, BT procedure, Executor executor) Iterate over the collection specified in parallel batches using the default runtime parameters.static <T, BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount) static <T, BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, Executor executor) static <T, BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, Executor executor) static <T, BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndexInListOnExecutor(List<T> list, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, Executor executor) Methods in org.eclipse.collections.impl.parallel with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> voidParallelIterate.forEachWithIndex(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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidDoubletonSet.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableDoubletonSet.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 ObjectIntProcedureModifier and TypeMethodDescriptionprivate 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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableEmptySortedSet.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidSortedSetAdapter.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableEmptySetWithHashingStrategy.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 ObjectIntProcedureModifier and TypeMethodDescriptionprivate 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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidImmutableArrayStack.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 ObjectIntProcedureModifier and TypeMethodDescriptionvoidArrayStack.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 ObjectIntProcedureModifier and TypeMethodDescriptionstatic <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(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(ArrayList<T> list, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidIterate.forEachWithIndex(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(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(List<T> list, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidArrayListIterate.reverseForEachWithIndex(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(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 ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> voidInternalArrayIterate.forEachWithIndex(T[] objectArray, int size, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidIterableIterate.forEachWithIndex(Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidIterableIterate.forEachWithIndex(List<T> iterable, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidIteratorIterate.forEachWithIndex(Iterator<T> iterator, ObjectIntProcedure<? super T> objectIntProcedure) static <T> voidRandomAccessListIterate.forEachWithIndex(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(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)