Uses of Interface
org.eclipse.collections.api.block.procedure.primitive.IntProcedure
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list 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.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
| org.eclipse.collections.impl.block.procedure.checked.primitive |
This package contains abstract implementations of primitive procedures.
|
| org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
| org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
| 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 the
ListIterable interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| org.eclipse.collections.impl.list.primitive |
This package contains implementations of the primitive list interfaces.
|
| 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.primitive | |
| org.eclipse.collections.impl.primitive | |
| org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
| org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stack.primitive | |
| org.eclipse.collections.impl.string.immutable | |
| org.eclipse.collections.impl.utility.internal.primitive | |
| org.eclipse.collections.impl.utility.primitive |
-
Uses of IntProcedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntProcedure Modifier and Type Method Description voidIntIterable. each(IntProcedure procedure)A synonym for forEach.voidIntIterable. forEach(IntProcedure procedure)Applies the IntProcedure to each element in the IntIterable.default IntIterableIntIterable. tap(IntProcedure procedure)LazyIntIterableLazyIntIterable. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntProcedure Modifier and Type Method Description default ImmutableIntBagImmutableIntBag. tap(IntProcedure procedure)default IntBagIntBag. tap(IntProcedure procedure)default MutableIntBagMutableIntBag. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntProcedure Modifier and Type Method Description default ImmutableIntCollectionImmutableIntCollection. tap(IntProcedure procedure)default MutableIntCollectionMutableIntCollection. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntProcedure Modifier and Type Method Description default ImmutableIntListImmutableIntList. tap(IntProcedure procedure)default IntListIntList. tap(IntProcedure procedure)default MutableIntListMutableIntList. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntBooleanMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntByteMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntCharMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntDoubleMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntFloatMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntIntMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntLongMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntObjectMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntShortMap. forEachKey(IntProcedure procedure)Iterates through each key in the map, invoking the procedure for each.voidIntValuesMap. forEachValue(IntProcedure procedure)Iterates through each value in this map.voidObjectIntMap. forEachValue(IntProcedure procedure)Iterates through each value in this map.default ImmutableObjectIntMap<K>ImmutableObjectIntMap. tap(IntProcedure procedure)default IntValuesMapIntValuesMap. tap(IntProcedure procedure)default MutableObjectIntMap<K>MutableObjectIntMap. tap(IntProcedure procedure)default ObjectIntMap<K>ObjectIntMap. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type IntProcedure Modifier and Type Method Description default ImmutableIntSetImmutableIntSet. tap(IntProcedure procedure)default IntSetIntSet. tap(IntProcedure procedure)default MutableIntSetMutableIntSet. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntProcedure Modifier and Type Method Description default ImmutableIntStackImmutableIntStack. tap(IntProcedure procedure)default IntStackIntStack. tap(IntProcedure procedure)default MutableIntStackMutableIntStack. tap(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntHashBag. each(IntProcedure procedure)voidIntHashBag. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.block.procedure.checked.primitive
Classes in org.eclipse.collections.impl.block.procedure.checked.primitive that implement IntProcedure Modifier and Type Class Description classCheckedIntProcedureThis file was automatically generated from template file checkedPrimitiveProcedure.stg. -
Uses of IntProcedure in org.eclipse.collections.impl.block.procedure.primitive
Classes in org.eclipse.collections.impl.block.procedure.primitive that implement IntProcedure Modifier and Type Class Description classIntCaseProcedureThis file was automatically generated from template file primitiveCaseProcedure.stg.Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type IntProcedure Modifier and Type Method Description IntCaseProcedureIntCaseProcedure. addCase(IntPredicate predicate, IntProcedure procedure)IntCaseProcedureIntCaseProcedure. setDefault(IntProcedure procedure)Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type IntProcedure Constructor Description IntCaseProcedure(IntProcedure newDefaultProcedure) -
Uses of IntProcedure in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidAbstractSynchronizedIntCollection. each(IntProcedure procedure)voidAbstractUnmodifiableIntCollection. each(IntProcedure procedure)voidAbstractSynchronizedIntCollection. forEach(IntProcedure procedure)voidAbstractUnmodifiableIntCollection. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntProcedure Modifier and Type Method Description voidCollectBooleanToIntIterable. each(IntProcedure procedure)voidCollectByteToIntIterable. each(IntProcedure procedure)voidCollectCharToIntIterable. each(IntProcedure procedure)voidCollectDoubleToIntIterable. each(IntProcedure procedure)voidCollectFloatToIntIterable. each(IntProcedure procedure)voidCollectIntIterable. each(IntProcedure procedure)voidCollectIntToIntIterable. each(IntProcedure procedure)voidCollectLongToIntIterable. each(IntProcedure procedure)voidCollectShortToIntIterable. each(IntProcedure procedure)voidLazyIntIterableAdapter. each(IntProcedure procedure)voidReverseIntIterable. each(IntProcedure procedure)voidSelectIntIterable. each(IntProcedure procedure)voidTapIntIterable. each(IntProcedure procedure)voidAbstractLazyIntIterable. forEach(IntProcedure procedure)voidCollectIntIterable. forEach(IntProcedure procedure)LazyIntIterableAbstractLazyIntIterable. tap(IntProcedure procedure)Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntProcedure Constructor Description TapIntIterable(IntIterable delegate, IntProcedure procedure)TapIntIterator(IntIterable iterable, IntProcedure procedure)TapIntIterator(IntIterator iterator, IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list with parameters of type IntProcedure Modifier and Type Method Description voidInterval. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntArrayList. each(IntProcedure procedure)voidIntArrayList. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntInterval. each(IntProcedure procedure)voidIntInterval. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidAbstractMutableIntKeySet. each(IntProcedure procedure)voidAbstractMutableIntValuesMap. each(IntProcedure procedure)voidObjectIntHashMap. each(IntProcedure procedure)voidObjectIntHashMapWithHashingStrategy. each(IntProcedure procedure)voidSynchronizedByteIntMap. each(IntProcedure procedure)voidSynchronizedCharIntMap. each(IntProcedure procedure)voidSynchronizedDoubleIntMap. each(IntProcedure procedure)voidSynchronizedFloatIntMap. each(IntProcedure procedure)voidSynchronizedIntIntMap. each(IntProcedure procedure)voidSynchronizedLongIntMap. each(IntProcedure procedure)voidSynchronizedObjectIntMap. each(IntProcedure procedure)voidSynchronizedShortIntMap. each(IntProcedure procedure)voidUnmodifiableByteIntMap. each(IntProcedure procedure)voidUnmodifiableCharIntMap. each(IntProcedure procedure)voidUnmodifiableDoubleIntMap. each(IntProcedure procedure)voidUnmodifiableFloatIntMap. each(IntProcedure procedure)voidUnmodifiableIntIntMap. each(IntProcedure procedure)voidUnmodifiableLongIntMap. each(IntProcedure procedure)voidUnmodifiableObjectIntMap. each(IntProcedure procedure)voidUnmodifiableShortIntMap. each(IntProcedure procedure)voidAbstractMutableIntKeySet. forEach(IntProcedure procedure)voidAbstractMutableIntValuesMap. forEach(IntProcedure procedure)voidObjectIntHashMap. forEach(IntProcedure procedure)voidObjectIntHashMapWithHashingStrategy. forEach(IntProcedure procedure)voidSynchronizedByteIntMap. forEach(IntProcedure procedure)voidSynchronizedCharIntMap. forEach(IntProcedure procedure)voidSynchronizedDoubleIntMap. forEach(IntProcedure procedure)voidSynchronizedFloatIntMap. forEach(IntProcedure procedure)voidSynchronizedIntIntMap. forEach(IntProcedure procedure)voidSynchronizedLongIntMap. forEach(IntProcedure procedure)voidSynchronizedObjectIntMap. forEach(IntProcedure procedure)voidSynchronizedShortIntMap. forEach(IntProcedure procedure)voidUnmodifiableByteIntMap. forEach(IntProcedure procedure)voidUnmodifiableCharIntMap. forEach(IntProcedure procedure)voidUnmodifiableDoubleIntMap. forEach(IntProcedure procedure)voidUnmodifiableFloatIntMap. forEach(IntProcedure procedure)voidUnmodifiableIntIntMap. forEach(IntProcedure procedure)voidUnmodifiableLongIntMap. forEach(IntProcedure procedure)voidUnmodifiableObjectIntMap. forEach(IntProcedure procedure)voidUnmodifiableShortIntMap. forEach(IntProcedure procedure)voidIntBooleanHashMap. forEachKey(IntProcedure procedure)voidIntByteHashMap. forEachKey(IntProcedure procedure)voidIntCharHashMap. forEachKey(IntProcedure procedure)voidIntDoubleHashMap. forEachKey(IntProcedure procedure)voidIntFloatHashMap. forEachKey(IntProcedure procedure)voidIntIntHashMap. forEachKey(IntProcedure procedure)voidIntLongHashMap. forEachKey(IntProcedure procedure)voidIntObjectHashMap. forEachKey(IntProcedure procedure)voidIntShortHashMap. forEachKey(IntProcedure procedure)voidSynchronizedIntBooleanMap. forEachKey(IntProcedure procedure)voidSynchronizedIntByteMap. forEachKey(IntProcedure procedure)voidSynchronizedIntCharMap. forEachKey(IntProcedure procedure)voidSynchronizedIntDoubleMap. forEachKey(IntProcedure procedure)voidSynchronizedIntFloatMap. forEachKey(IntProcedure procedure)voidSynchronizedIntIntMap. forEachKey(IntProcedure procedure)voidSynchronizedIntLongMap. forEachKey(IntProcedure procedure)voidSynchronizedIntObjectMap. forEachKey(IntProcedure procedure)voidSynchronizedIntShortMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntBooleanMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntByteMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntCharMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntDoubleMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntFloatMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntIntMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntLongMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntObjectMap. forEachKey(IntProcedure procedure)voidUnmodifiableIntShortMap. forEachKey(IntProcedure procedure)voidAbstractMutableIntValuesMap. forEachValue(IntProcedure procedure)voidObjectIntHashMap. forEachValue(IntProcedure procedure)voidObjectIntHashMapWithHashingStrategy. forEachValue(IntProcedure procedure)voidSynchronizedByteIntMap. forEachValue(IntProcedure procedure)voidSynchronizedCharIntMap. forEachValue(IntProcedure procedure)voidSynchronizedDoubleIntMap. forEachValue(IntProcedure procedure)voidSynchronizedFloatIntMap. forEachValue(IntProcedure procedure)voidSynchronizedIntIntMap. forEachValue(IntProcedure procedure)voidSynchronizedLongIntMap. forEachValue(IntProcedure procedure)voidSynchronizedObjectIntMap. forEachValue(IntProcedure procedure)voidSynchronizedShortIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableByteIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableCharIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableDoubleIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableFloatIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableIntIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableLongIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableObjectIntMap. forEachValue(IntProcedure procedure)voidUnmodifiableShortIntMap. forEachValue(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.map.primitive
Methods in org.eclipse.collections.impl.map.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntKeysMap. forEachKey(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type IntProcedure Modifier and Type Method Description voidSynchronizedIntIterable. each(IntProcedure procedure)voidSynchronizedIntIterable. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidIntHashSet. each(IntProcedure procedure)voidIntHashSet. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type IntProcedure Modifier and Type Method Description voidSynchronizedIntStack. each(IntProcedure procedure)voidUnmodifiableIntStack. each(IntProcedure procedure)voidSynchronizedIntStack. forEach(IntProcedure procedure)voidUnmodifiableIntStack. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type IntProcedure Modifier and Type Method Description voidAbstractIntStack. each(IntProcedure procedure)voidAbstractIntStack. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntProcedure Modifier and Type Method Description voidCodePointAdapter. each(IntProcedure procedure)voidCodePointList. each(IntProcedure procedure)voidCodePointAdapter. forEach(IntProcedure procedure)voidCodePointList. forEach(IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntProcedure Modifier and Type Method Description static voidIntIterableIterate. forEach(IntIterable iterable, IntProcedure procedure)static voidIntIteratorIterate. forEach(IntIterator iterator, IntProcedure procedure) -
Uses of IntProcedure in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type IntProcedure Modifier and Type Method Description static LazyIntIterableLazyIntIterate. tap(IntIterable iterable, IntProcedure procedure)Creates a deferred tap iterable for the specified iterable.