Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap
Packages that use ImmutableObjectLongMap
Package
Description
This package contains interfaces for map API which enhance the performance and functionality of
MapThis 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 interfaces for stack API.
-
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V>ImmutableCollection.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V>ImmutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescription<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.empty()<T,K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.of()<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.of(K key, long value) <K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.ofAll(ObjectLongMap<? extends K> map) <K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.with()<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.with(K key, long value) <K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.withAll(ObjectLongMap<? extends K> map) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableObjectLongMapModifier and TypeMethodDescription<VV> ImmutableObjectLongMap<VV>ImmutableOrderedMap.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> ImmutableObjectLongMap<VV>ImmutableOrderedMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescriptionImmutableLongObjectMap.flipUniqueValues()ImmutableObjectLongMap.newWithKeyValue(K key, long value) Copy this map, associate the value with the key (replacing the value if one already exists forkey), and return the copy as new immutable map.ImmutableObjectLongMap.newWithoutAllKeys(Iterable<? extends K> keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectLongMap.newWithoutKey(K key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) ImmutableObjectLongMap.select(ObjectLongPredicate<? super K> predicate) <VV> ImmutableObjectLongMap<VV>ImmutablePrimitiveObjectMap.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> ImmutableObjectLongMap<VV>ImmutablePrimitiveObjectMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) default ImmutableObjectLongMap<K>ImmutableObjectLongMap.tap(LongProcedure procedure) ObjectLongMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V>ImmutableStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V>ImmutableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function)