Uses of Interface
org.eclipse.collections.api.tuple.primitive.ObjectIntPair
-
Packages that use ObjectIntPair Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.factory.bag This package contains factory API for creating instance of typeBag
.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.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.collector org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.tuple.primitive -
-
Uses of ObjectIntPair in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return types with arguments of type ObjectIntPair Modifier and Type Method Description ListIterable<ObjectIntPair<T>>
Bag. bottomOccurrences(int count)
Returns thecount
least frequently occurring items.ImmutableList<ObjectIntPair<T>>
ImmutableBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
MutableBagIterable. bottomOccurrences(int count)
ListIterable<ObjectIntPair<T>>
Bag. topOccurrences(int count)
Returns thecount
most frequently occurring items.ImmutableList<ObjectIntPair<T>>
ImmutableBag. topOccurrences(int count)
MutableList<ObjectIntPair<T>>
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 ObjectIntPair Modifier and Type Method Description default <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 ObjectIntPair Modifier and Type Method Description RichIterable<ObjectIntPair<K>>
ObjectIntMap. keyValuesView()
Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntPair Modifier and Type Method Description default 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 ObjectIntPair Modifier and Type Method Description default MutableObjectIntMap<K>
MutableObjectIntMap. withAllKeyValues(java.lang.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 ObjectIntPair Modifier and Type Method Description protected 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 ObjectIntPair Modifier and Type Method Description protected 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 ObjectIntPair Modifier and Type Method Description ImmutableList<ObjectIntPair<T>>
AbstractImmutableBag. bottomOccurrences(int n)
ImmutableList<ObjectIntPair<T>>
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 ObjectIntPair Modifier and Type Method Description MutableList<ObjectIntPair<T>>
AbstractMutableBagIterable. bottomOccurrences(int n)
MutableList<ObjectIntPair<T>>
MultiReaderHashBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
MultiReaderHashBag.UntouchableMutableBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
SynchronizedBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
UnmodifiableBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
AbstractMutableBagIterable. topOccurrences(int n)
MutableList<ObjectIntPair<T>>
MultiReaderHashBag. topOccurrences(int count)
MutableList<ObjectIntPair<T>>
MultiReaderHashBag.UntouchableMutableBag. topOccurrences(int count)
MutableList<ObjectIntPair<T>>
SynchronizedBag. topOccurrences(int count)
MutableList<ObjectIntPair<T>>
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 ObjectIntPair Modifier and Type Method Description ImmutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. bottomOccurrences(int n)
private MutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function)
ImmutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. topOccurrences(int n)
Method parameters in org.eclipse.collections.impl.bag.sorted.immutable with type arguments of type ObjectIntPair Modifier and Type Method Description private 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 ObjectIntPair Modifier and Type Method Description MutableList<ObjectIntPair<T>>
SynchronizedSortedBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
UnmodifiableSortedBag. bottomOccurrences(int count)
MutableList<ObjectIntPair<T>>
SynchronizedSortedBag. topOccurrences(int count)
MutableList<ObjectIntPair<T>>
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 ObjectIntPair Modifier and Type Method Description static <T> java.util.stream.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 ObjectIntPair Modifier and Type Method Description RichIterable<ObjectIntPair<K>>
ImmutableObjectIntEmptyMap. keyValuesView()
RichIterable<ObjectIntPair<K>>
ImmutableObjectIntHashMap. keyValuesView()
RichIterable<ObjectIntPair<K>>
ImmutableObjectIntSingletonMap. keyValuesView()
-
Uses of ObjectIntPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ObjectIntPair Modifier and Type Method Description ObjectIntPair<K>
ObjectIntHashMap.KeyValuesView.InternalKeyValuesIterator. next()
ObjectIntPair<K>
ObjectIntHashMapWithHashingStrategy.KeyValuesView.InternalKeyValuesIterator. next()
Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ObjectIntPair Modifier and Type Method Description java.util.Iterator<ObjectIntPair<K>>
ObjectIntHashMap.KeyValuesView. iterator()
java.util.Iterator<ObjectIntPair<K>>
ObjectIntHashMapWithHashingStrategy.KeyValuesView. iterator()
RichIterable<ObjectIntPair<K>>
ObjectIntHashMap. keyValuesView()
RichIterable<ObjectIntPair<K>>
ObjectIntHashMapWithHashingStrategy. keyValuesView()
RichIterable<ObjectIntPair<K>>
SynchronizedObjectIntMap. keyValuesView()
RichIterable<ObjectIntPair<K>>
UnmodifiableObjectIntMap. keyValuesView()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntPair Modifier and Type Method Description void
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 ObjectIntPair Modifier and Type Method Description void
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 ObjectIntPair Modifier and Type Class Description class
ObjectIntPairImpl<T>
This file was automatically generated from template file objectPrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return ObjectIntPair Modifier and Type Method Description static <T> ObjectIntPair<T>
PrimitiveTuples. pair(T one, int two)
Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type ObjectIntPair Modifier and Type Method Description int
ObjectIntPairImpl. compareTo(ObjectIntPair<T> that)
-