Uses of Interface
org.eclipse.collections.api.block.function.primitive.IntToObjectFunction
Packages that use IntToObjectFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list 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 API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of primitive functions.
This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of IntToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> RichIterable<V> IntIterable.collect(IntToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.default <V, R extends Collection<V>>
RIntIterable.collect(IntToObjectFunction<? extends V> function, R target) Same asIntIterable.collect(IntToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V> LazyIntIterable.collect(IntToObjectFunction<? extends V> function) default <V, R extends Collection<V>>
RIntIterable.flatCollect(IntToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofIntIterable.collect(IntToObjectFunction).<V> LazyIterable<V> LazyIntIterable.flatCollect(IntToObjectFunction<? extends Iterable<V>> function) default <T> MutableIntListIntIterable.toSortedListBy(IntToObjectFunction<T> function) Converts the collection to a MutableIntListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableIntListIntIterable.toSortedListBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableIntList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of IntToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V> ImmutableIntBag.collect(IntToObjectFunction<? extends V> function) <V> Bag<V> IntBag.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> MutableIntBag.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableCollection<V> ImmutableIntCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableIntCollection.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V> ImmutableIntList.collect(IntToObjectFunction<? extends V> function) <V> ListIterable<V> IntList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> MutableIntList.collect(IntToObjectFunction<? extends V> function) default <T> MutableIntListMutableIntList.sortThisBy(IntToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableIntListMutableIntList.sortThisBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of IntToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V> ImmutableByteIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableCharIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableDoubleIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableFloatIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableLongIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableCollection<V> ImmutableObjectIntMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableShortIntMap.collect(IntToObjectFunction<? extends V> function) <V> Bag<V> IntValuesMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> MutableIntValuesMap.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> MutableObjectIntMap.collect(IntToObjectFunction<? extends V> function) MutableIntObjectMap.getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function) Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of IntToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> OrderedIterable<V> OrderedIntIterable.collect(IntToObjectFunction<? extends V> function) <V> ReversibleIterable<V> ReversibleIntIterable.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableSet<V> ImmutableIntSet.collect(IntToObjectFunction<? extends V> function) <V> SetIterable<V> IntSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> MutableIntSet.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableStack<V> ImmutableIntStack.collect(IntToObjectFunction<? extends V> function) <V> StackIterable<V> IntStack.collect(IntToObjectFunction<? extends V> function) <V> MutableStack<V> MutableIntStack.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V> ImmutableIntEmptyBag.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntHashBag.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntSingletonBag.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableBag<V> IntHashBag.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedIntBag.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableIntBag.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement IntToObjectFunctionModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as IntToObjectFunctionModifier and TypeFieldDescriptionprivate IntToObjectFunction<? extends V> IntCaseFunction.defaultFunctionFields in org.eclipse.collections.impl.block.function.primitive with type parameters of type IntToObjectFunctionModifier and TypeFieldDescriptionprivate final MutableList<Pair<IntPredicate, IntToObjectFunction<? extends V>>> IntCaseFunction.predicateFunctionsMethods in org.eclipse.collections.impl.block.function.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescriptionIntCaseFunction.addCase(IntPredicate predicate, IntToObjectFunction<? extends V> function) IntCaseFunction.setDefault(IntToObjectFunction<? extends V> function) Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type IntToObjectFunctionModifierConstructorDescriptionIntCaseFunction(IntToObjectFunction<? extends V> newDefaultFunction) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableCollection<V> AbstractSynchronizedIntCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractUnmodifiableIntCollection.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as IntToObjectFunctionModifier and TypeFieldDescriptionprivate final IntToObjectFunction<? extends V> CollectIntToObjectIterable.functionprivate final IntToObjectFunction<? extends Iterable<V>> FlatCollectIntToObjectIterable.FlatCollectIntIterator.functionprivate final IntToObjectFunction<? extends Iterable<V>> FlatCollectIntToObjectIterable.functionMethods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> LazyIterable<V> AbstractLazyIntIterable.collect(IntToObjectFunction<? extends V> function) <V> LazyIterable<V> AbstractLazyIntIterable.flatCollect(IntToObjectFunction<? extends Iterable<V>> function) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntToObjectFunctionModifierConstructorDescriptionCollectIntToObjectIterable(IntIterable iterable, IntToObjectFunction<? extends V> function) FlatCollectIntIterator(IntIterable iterable, IntToObjectFunction<? extends Iterable<V>> newFunction) FlatCollectIntIterator(IntIterator newIterator, IntToObjectFunction<? extends Iterable<V>> newFunction) FlatCollectIntToObjectIterable(IntIterable iterable, IntToObjectFunction<? extends Iterable<V>> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V> ImmutableIntArrayList.collect(IntToObjectFunction<? extends V> function) <V, R extends Collection<V>>
RImmutableIntArrayList.collect(IntToObjectFunction<? extends V> function, R target) <V> ImmutableList<V> ImmutableIntEmptyList.collect(IntToObjectFunction<? extends V> function) <V> ImmutableList<V> ImmutableIntSingletonList.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableList<V> IntArrayList.collect(IntToObjectFunction<? extends V> function) <V, R extends Collection<V>>
RIntArrayList.collect(IntToObjectFunction<? extends V> function, R target) <V> MutableList<V> SynchronizedIntList.collect(IntToObjectFunction<? extends V> function) <V> MutableList<V> UnmodifiableIntList.collect(IntToObjectFunction<? extends V> function) <T> MutableIntListSynchronizedIntList.sortThisBy(IntToObjectFunction<T> function) <T> MutableIntListSynchronizedIntList.sortThisBy(IntToObjectFunction<T> function, Comparator<? super T> comparator) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V> IntInterval.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V> ImmutableByteIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableByteIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableByteIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableCharIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableCharIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableCharIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableDoubleIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableDoubleIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableDoubleIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableFloatIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableFloatIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableFloatIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableIntIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableLongIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableLongIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableLongIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableCollection<V> ImmutableObjectIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableCollection<V> ImmutableObjectIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableCollection<V> ImmutableObjectIntSingletonMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableShortIntEmptyMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableShortIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableBag<V> ImmutableShortIntSingletonMap.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableSet<V> AbstractMutableIntKeySet.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> AbstractMutableIntValuesMap.AbstractIntValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> AbstractMutableIntValuesMap.collect(IntToObjectFunction<? extends V> function) <V> ImmutableSet<V> ImmutableIntIntMapKeySet.collect(IntToObjectFunction<? extends V> function) <V> ImmutableSet<V> ImmutableIntMapKeySet.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMap.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMap.ValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMapWithHashingStrategy.collect(IntToObjectFunction<? extends V> function) <V> MutableCollection<V> ObjectIntHashMapWithHashingStrategy.ValuesCollection.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedByteIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedCharIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedDoubleIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedFloatIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedIntIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> SynchronizedLongIntMap.collect(IntToObjectFunction<? extends V> function) <V1> MutableCollection<V1> SynchronizedObjectIntMap.collect(IntToObjectFunction<? extends V1> function) <V> MutableBag<V> SynchronizedShortIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableByteIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableCharIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableDoubleIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableFloatIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableIntIntMap.collect(IntToObjectFunction<? extends V> function) <V> MutableBag<V> UnmodifiableLongIntMap.collect(IntToObjectFunction<? extends V> function) <V1> MutableCollection<V1> UnmodifiableObjectIntMap.collect(IntToObjectFunction<? extends V1> function) <V> MutableBag<V> UnmodifiableShortIntMap.collect(IntToObjectFunction<? extends V> function) IntObjectHashMap.getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function) SynchronizedIntObjectMap.getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function) UnmodifiableIntObjectMap.getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> RichIterable<V> SynchronizedIntIterable.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableSet<V> ImmutableIntEmptySet.collect(IntToObjectFunction<? extends V> function) <V> ImmutableSet<V> ImmutableIntSingletonSet.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableSet<V> IntHashSet.collect(IntToObjectFunction<? extends V> function) <V, R extends Collection<V>>
RIntHashSet.collect(IntToObjectFunction<? extends V> function, R target) <V> ImmutableSet<V> IntHashSet.ImmutableIntHashSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> SynchronizedIntSet.collect(IntToObjectFunction<? extends V> function) <V> MutableSet<V> UnmodifiableIntSet.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableStack<V> ImmutableIntArrayStack.collect(IntToObjectFunction<? extends V> function) <V> ImmutableStack<V> ImmutableIntEmptyStack.collect(IntToObjectFunction<? extends V> function) <V> ImmutableStack<V> ImmutableIntSingletonStack.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> MutableStack<V> IntArrayStack.collect(IntToObjectFunction<? extends V> function) <V> MutableStack<V> SynchronizedIntStack.collect(IntToObjectFunction<? extends V> function) <V> MutableStack<V> UnmodifiableIntStack.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V> CodePointAdapter.collect(IntToObjectFunction<? extends V> function) <V> ImmutableList<V> CodePointList.collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescriptionstatic <V, R extends Collection<V>>
RIntIterableIterate.collect(IntIterable iterable, IntToObjectFunction<? extends V> function, R targetCollection) static <V, R extends Collection<V>>
RIntIteratorIterate.collect(IntIterator iterator, IntToObjectFunction<? extends V> function, R targetCollection) -
Uses of IntToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type IntToObjectFunctionModifier and TypeMethodDescriptionstatic <V> LazyIterable<V> LazyIntIterate.collect(IntIterable iterable, IntToObjectFunction<? extends V> function) Creates a deferred transforming int iterable for the specified int iterable.static <V> LazyIterable<V> LazyIntIterate.collectIf(IntIterable iterable, IntPredicate predicate, IntToObjectFunction<? extends V> function) Creates a deferred filtering and transforming int iterable for the specified int iterable.static <V> LazyIterable<V> LazyIntIterate.flatCollect(IntIterable iterable, IntToObjectFunction<? extends Iterable<V>> function) Creates a deferred transforming and flattening int iterable for the specified int iterable.