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. -
-
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 thecountleast 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 thecountmost 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 voidMutableObjectIntMap. 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(Iterable<ObjectIntPair<K>> keyValuePairs)
-