Uses of Interface
org.eclipse.collections.api.bimap.MutableBiMap
Packages that use MutableBiMap
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for BiMap API.
-
Uses of MutableBiMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableBiMap -
Uses of MutableBiMap in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableBiMapModifier and TypeMethodDescriptionMutableBiMap.asSynchronized()MutableBiMap.asUnmodifiable()MutableBiMap.clone()<K2,V2> MutableBiMap<K2, V2> <R> MutableBiMap<R,V> MutableBiMap.collectKeysUnique(Function2<? super K, ? super V, ? extends R> function) <R> MutableBiMap<K,R> MutableBiMap.collectValues(Function2<? super K, ? super V, ? extends R> function) MutableBiMap.flipUniqueValues()default <VV> MutableBiMap<VV,V> MutableBiMap.groupByUniqueKey(Function<? super V, ? extends VV> function) MutableBiMap.inverse()MutableBiMap.newEmpty()MutableBiMap.reject(Predicate2<? super K, ? super V> predicate) MutableBiMap.select(Predicate2<? super K, ? super V> predicate) MutableBiMap.withAllKeyValueArguments(Pair<? extends K, ? extends V>... keyValuePairs) MutableBiMap.withAllKeyValues(Iterable<? extends Pair<? extends K, ? extends V>> keyValues) MutableBiMap.withKeyValue(K key, V value) default MutableBiMap<K,V> default MutableBiMap<K,V> MutableBiMap.withMapIterable(MapIterable<? extends K, ? extends V> mapIterable) MutableBiMap.withoutAllKeys(Iterable<? extends K> keys) MutableBiMap.withoutKey(K key) -
Uses of MutableBiMap in org.eclipse.collections.api.factory.bimap
Methods in org.eclipse.collections.api.factory.bimap that return MutableBiMapModifier and TypeMethodDescription<K,V> MutableBiMap<K, V> MutableBiMapFactory.empty()<K,V> MutableBiMap<K, V> MutableBiMapFactory.of()Same asMutableBiMapFactory.empty().<K,V> MutableBiMap<K, V> MutableBiMapFactory.of(K key, V value) <K,V> MutableBiMap<K, V> MutableBiMapFactory.of(K key1, V value1, K key2, V value2) <K,V> MutableBiMap<K, V> MutableBiMapFactory.of(K key1, V value1, K key2, V value2, K key3, V value3) <K,V> MutableBiMap<K, V> MutableBiMapFactory.of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4) <K,V> MutableBiMap<K, V> MutableBiMapFactory.with()Same asMutableBiMapFactory.empty().<K,V> MutableBiMap<K, V> MutableBiMapFactory.with(K key, V value) <K,V> MutableBiMap<K, V> MutableBiMapFactory.with(K key1, V value1, K key2, V value2) <K,V> MutableBiMap<K, V> MutableBiMapFactory.with(K key1, V value1, K key2, V value2, K key3, V value3) <K,V> MutableBiMap<K, V> MutableBiMapFactory.with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4) Methods in org.eclipse.collections.api.factory.bimap with parameters of type MutableBiMapModifier and TypeMethodDescription<K,V> ImmutableBiMap<K, V> ImmutableBiMapFactory.ofAll(MutableBiMap<K, V> biMap) <K,V> ImmutableBiMap<K, V> ImmutableBiMapFactory.withAll(MutableBiMap<K, V> biMap)