Package | Description |
---|---|
com.gs.collections.api.bimap |
This package contains interfaces for BiMap API.
|
com.gs.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
Modifier and Type | Method and 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() |
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) |
Modifier and Type | Class and Description |
---|---|
class |
HashBiMap<K,V>
A
MutableBiMap which uses two hash tables as its underlying data store. |
Copyright © 2004–2016. All rights reserved.