Uses of Interface
org.eclipse.collections.api.tuple.primitive.ObjectIntPair
Packages that use ObjectIntPair
Package
Description
This package contains interfaces for Bag API.
This package contains factory API for creating instance of type
Bag
.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 of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.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.
-
Uses of ObjectIntPair in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionBag.bottomOccurrences
(int count) Returns thecount
least frequently occurring items.ImmutableBag.bottomOccurrences
(int count) MutableBagIterable.bottomOccurrences
(int count) Bag.topOccurrences
(int count) Returns thecount
most frequently occurring items.ImmutableBag.topOccurrences
(int count) MutableBagIterable.topOccurrences
(int count) -
Uses of ObjectIntPair in org.eclipse.collections.api.factory.bag
Methods in org.eclipse.collections.api.factory.bag with parameters of type ObjectIntPairModifier and TypeMethodDescriptiondefault <T> ImmutableBag
<T> ImmutableBagFactory.ofOccurrences
(ObjectIntPair<T>... elementsWithOccurrences) default <T> MutableBag
<T> MutableBagFactory.ofOccurrences
(ObjectIntPair<T>... elementsWithOccurrences) default <T> ImmutableBag
<T> ImmutableBagFactory.withOccurrences
(ObjectIntPair<T>... elementsWithOccurrences) default <T> MutableBag
<T> MutableBagFactory.withOccurrences
(ObjectIntPair<T>... elementsWithOccurrences) -
Uses of ObjectIntPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionObjectIntMap.keyValuesView()
Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntPairModifier and TypeMethodDescriptiondefault void
MutableObjectIntMap.putPair
(ObjectIntPair<K> keyValuePair) This method allows MutableObjectIntMap the ability to add an element in the form ofObjectIntPair<K>
.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type ObjectIntPairModifier and TypeMethodDescriptiondefault MutableObjectIntMap
<K> MutableObjectIntMap.withAllKeyValues
(Iterable<ObjectIntPair<K>> keyValuePairs) -
Uses of ObjectIntPair in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionprotected MutableList
<ObjectIntPair<T>> AbstractBag.occurrencesSortingBy
(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty) protected MutableList
<ObjectIntPair<T>> AbstractBag.toListWithOccurrences()
Method parameters in org.eclipse.collections.impl.bag with type arguments of type ObjectIntPairModifier and TypeMethodDescriptionprotected MutableList
<ObjectIntPair<T>> AbstractBag.occurrencesSortingBy
(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty) protected MutableList
<ObjectIntPair<T>> AbstractBag.occurrencesSortingBy
(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty) -
Uses of ObjectIntPair in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionAbstractImmutableBag.bottomOccurrences
(int n) AbstractImmutableBag.topOccurrences
(int n) -
Uses of ObjectIntPair in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionAbstractMutableBagIterable.bottomOccurrences
(int n) MultiReaderHashBag.bottomOccurrences
(int count) MultiReaderHashBag.UntouchableMutableBag.bottomOccurrences
(int count) SynchronizedBag.bottomOccurrences
(int count) UnmodifiableBag.bottomOccurrences
(int count) AbstractMutableBagIterable.topOccurrences
(int n) MultiReaderHashBag.topOccurrences
(int count) MultiReaderHashBag.UntouchableMutableBag.topOccurrences
(int count) SynchronizedBag.topOccurrences
(int count) UnmodifiableBag.topOccurrences
(int count) -
Uses of ObjectIntPair in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionAbstractImmutableSortedBag.bottomOccurrences
(int n) private MutableList
<ObjectIntPair<T>> AbstractImmutableSortedBag.occurrencesSortingBy
(int n, IntFunction<ObjectIntPair<T>> function) AbstractImmutableSortedBag.topOccurrences
(int n) Method parameters in org.eclipse.collections.impl.bag.sorted.immutable with type arguments of type ObjectIntPairModifier and TypeMethodDescriptionprivate MutableList
<ObjectIntPair<T>> AbstractImmutableSortedBag.occurrencesSortingBy
(int n, IntFunction<ObjectIntPair<T>> function) -
Uses of ObjectIntPair in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionSynchronizedSortedBag.bottomOccurrences
(int count) UnmodifiableSortedBag.bottomOccurrences
(int count) SynchronizedSortedBag.topOccurrences
(int count) UnmodifiableSortedBag.topOccurrences
(int count) -
Uses of ObjectIntPair in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionstatic <T> Collector
<T, ?, MutableList<ObjectIntPair<T>>> Collectors2.zipWithIndex()
Returns aMutableList
of pairs formed from this stream of elements its indices. -
Uses of ObjectIntPair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionImmutableObjectIntEmptyMap.keyValuesView()
ImmutableObjectIntHashMap.keyValuesView()
ImmutableObjectIntSingletonMap.keyValuesView()
-
Uses of ObjectIntPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ObjectIntPairModifier and TypeMethodDescriptionObjectIntHashMap.KeyValuesView.InternalKeyValuesIterator.next()
ObjectIntHashMapWithHashingStrategy.KeyValuesView.InternalKeyValuesIterator.next()
Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ObjectIntPairModifier and TypeMethodDescriptionObjectIntHashMap.KeyValuesView.iterator()
ObjectIntHashMapWithHashingStrategy.KeyValuesView.iterator()
ObjectIntHashMap.keyValuesView()
ObjectIntHashMapWithHashingStrategy.keyValuesView()
SynchronizedObjectIntMap.keyValuesView()
UnmodifiableObjectIntMap.keyValuesView()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntPairModifier and TypeMethodDescriptionvoid
SynchronizedObjectIntMap.putPair
(ObjectIntPair<K> keyValuePair) void
UnmodifiableObjectIntMap.putPair
(ObjectIntPair<K> keyValuePair) Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ObjectIntPairModifier and TypeMethodDescriptionvoid
ObjectIntHashMap.KeyValuesView.each
(Procedure<? super ObjectIntPair<K>> procedure) void
ObjectIntHashMapWithHashingStrategy.KeyValuesView.each
(Procedure<? super ObjectIntPair<K>> procedure) <P> void
ObjectIntHashMap.KeyValuesView.forEachWith
(Procedure2<? super ObjectIntPair<K>, ? super P> procedure, P parameter) <P> void
ObjectIntHashMapWithHashingStrategy.KeyValuesView.forEachWith
(Procedure2<? super ObjectIntPair<K>, ? super P> procedure, P parameter) void
ObjectIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure) void
ObjectIntHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure) -
Uses of ObjectIntPair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement ObjectIntPairModifier and TypeClassDescriptionclass
This file was automatically generated from template file objectPrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return ObjectIntPairModifier and TypeMethodDescriptionstatic <T> ObjectIntPair
<T> PrimitiveTuples.pair
(T one, int two) Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type ObjectIntPair