Uses of Interface
org.eclipse.collections.api.bimap.MutableBiMap
-
Packages that use MutableBiMap Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.factory.bimap -
-
Uses of MutableBiMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableBiMap Modifier and Type Method Description <NK,NV>
MutableBiMap<NK,NV>RichIterable. toBiMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)Converts the collection to a BiMap implementation using the specified key and value functions. -
Uses of MutableBiMap in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableBiMap Modifier and Type Method Description MutableBiMap<K,V>MutableBiMap. asSynchronized()MutableBiMap<K,V>MutableBiMap. asUnmodifiable()MutableBiMap<K,V>MutableBiMap. clone()<K2,V2>
MutableBiMap<K2,V2>MutableBiMap. collect(Function2<? super K,? super V,Pair<K2,V2>> function)<R> MutableBiMap<K,R>MutableBiMap. collectValues(Function2<? super K,? super V,? extends R> function)MutableBiMap<V,K>MutableBiMap. flipUniqueValues()default <VV> MutableBiMap<VV,V>MutableBiMap. groupByUniqueKey(Function<? super V,? extends VV> function)MutableBiMap<V,K>MutableBiMap. inverse()MutableBiMap<K,V>MutableBiMap. newEmpty()MutableBiMap<K,V>MutableBiMap. reject(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>MutableBiMap. select(Predicate2<? super K,? super V> predicate)MutableBiMap<K,V>MutableBiMap. tap(Procedure<? super V> procedure)MutableBiMap<K,V>MutableBiMap. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)MutableBiMap<K,V>MutableBiMap. withAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues)MutableBiMap<K,V>MutableBiMap. withKeyValue(K key, V value)default MutableBiMap<K,V>MutableBiMap. withMap(Map<? extends K,? extends V> map)default MutableBiMap<K,V>MutableBiMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableBiMap<K,V>MutableBiMap. withoutAllKeys(Iterable<? extends K> keys)MutableBiMap<K,V>MutableBiMap. withoutKey(K key) -
Uses of MutableBiMap in org.eclipse.collections.api.factory.bimap
Methods in org.eclipse.collections.api.factory.bimap that return MutableBiMap Modifier and Type Method Description <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 MutableBiMap Modifier and Type Method Description <K,V>
ImmutableBiMap<K,V>ImmutableBiMapFactory. ofAll(MutableBiMap<K,V> biMap)<K,V>
ImmutableBiMap<K,V>ImmutableBiMapFactory. withAll(MutableBiMap<K,V> biMap)
-