Uses of Interface
org.eclipse.collections.api.map.ImmutableMapIterable
Packages that use ImmutableMapIterable
Package
Description
This package contains interfaces for BiMap API.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains mutable and immutable sorted map interfaces.
-
Uses of ImmutableMapIterable in org.eclipse.collections.api.bimap
Subinterfaces of ImmutableMapIterable in org.eclipse.collections.api.bimapModifier and TypeInterfaceDescriptioninterfaceImmutableBiMap<K,V> ABiMapwhose contents cannot be altered after initialization.Methods in org.eclipse.collections.api.bimap that return ImmutableMapIterable -
Uses of ImmutableMapIterable in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableMapIterable -
Uses of ImmutableMapIterable in org.eclipse.collections.api.map
Subinterfaces of ImmutableMapIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterfaceImmutableMap<K,V> An ImmutableMap is different from a JCF Map because it has no mutating methods.interfaceImmutableOrderedMap<K,V> Methods in org.eclipse.collections.api.map that return ImmutableMapIterableModifier and TypeMethodDescriptiondefault <K1,V1, V2> ImmutableMapIterable<K1, V2> ImmutableMapIterable.aggregateBy(Function<? super K, ? extends K1> keyFunction, Function<? super V, ? extends V1> valueFunction, Function0<? extends V2> zeroValueFactory, Function2<? super V2, ? super V1, ? extends V2> nonMutatingAggregator) default <KK,VV> ImmutableMapIterable<KK, VV> ImmutableMapIterable.aggregateBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Function2<? super VV, ? super V, ? extends VV> nonMutatingAggregator) default <KK,VV> ImmutableMapIterable<KK, VV> ImmutableMapIterable.aggregateInPlaceBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Procedure2<? super VV, ? super V> mutatingAggregator) <K2,V2> ImmutableMapIterable<K2, V2> <R> ImmutableMapIterable<R,V> ImmutableMapIterable.collectKeysUnique(Function2<? super K, ? super V, ? extends R> function) <R> ImmutableMapIterable<K,R> ImmutableMapIterable.collectValues(Function2<? super K, ? super V, ? extends R> function) ImmutableMapIterable.flipUniqueValues()<V1> ImmutableMapIterable<V1,V> ImmutableMapIterable.groupByUniqueKey(Function<? super V, ? extends V1> function) ImmutableMapIterable.newWithAllKeyValueArguments(Pair<? extends K, ? extends V>... keyValuePairs) ImmutableMapIterable.newWithAllKeyValues(Iterable<? extends Pair<? extends K, ? extends V>> keyValues) ImmutableMapIterable.newWithKeyValue(K key, V value) ImmutableMapIterable.newWithMap(Map<? extends K, ? extends V> map) ImmutableMapIterable.newWithMapIterable(MapIterable<? extends K, ? extends V> mapIterable) ImmutableMapIterable.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableMapIterable.newWithoutKey(K key) default <KK> ImmutableMapIterable<KK,V> ImmutableMapIterable.reduceBy(Function<? super V, ? extends KK> groupBy, Function2<? super V, ? super V, ? extends V> reduceFunction) ImmutableMapIterable.reject(Predicate2<? super K, ? super V> predicate) ImmutableMapIterable.select(Predicate2<? super K, ? super V> predicate) MapIterable.toImmutable()MutableMapIterable.toImmutable()Returns an immutable copy of this map. -
Uses of ImmutableMapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of ImmutableMapIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedMap<K,V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.