Uses of Interface
org.eclipse.collections.api.bimap.BiMap
-
Packages that use BiMap Package Description org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface. -
-
Uses of BiMap in org.eclipse.collections.api.bimap
Subinterfaces of BiMap in org.eclipse.collections.api.bimap Modifier and Type Interface Description interfaceImmutableBiMap<K,V>ABiMapwhose contents cannot be altered after initialization.interfaceMutableBiMap<K,V>ABiMapwhose contents can be altered after initialization.Methods in org.eclipse.collections.api.bimap that return BiMap Modifier and Type Method Description <K2,V2>
BiMap<K2,V2>BiMap. collect(Function2<? super K,? super V,Pair<K2,V2>> function)For each key and value of the map the function is evaluated.<R> BiMap<R,V>BiMap. collectKeysUnique(Function2<? super K,? super V,? extends R> function)<R> BiMap<K,R>BiMap. collectValues(Function2<? super K,? super V,? extends R> function)For each key and value of the map the function is evaluated.BiMap<V,K>BiMap. flipUniqueValues()<VV> BiMap<VV,V>BiMap. groupByUniqueKey(Function<? super V,? extends VV> function)BiMap<V,K>BiMap. inverse()Returns an inversed view of this BiMap, where the associations are in the direction of this bimap's values to keys.BiMap<K,V>BiMap. reject(Predicate2<? super K,? super V> predicate)BiMap<K,V>BiMap. select(Predicate2<? super K,? super V> predicate)BiMap<K,V>BiMap. tap(Procedure<? super V> procedure) -
Uses of BiMap in org.eclipse.collections.impl.bimap
Classes in org.eclipse.collections.impl.bimap that implement BiMap Modifier and Type Class Description classAbstractBiMap<K,V> -
Uses of BiMap in org.eclipse.collections.impl.bimap.immutable
Classes in org.eclipse.collections.impl.bimap.immutable that implement BiMap Modifier and Type Class Description classAbstractImmutableBiMap<K,V>private static classAbstractImmutableBiMap.Inverse<K,V>(package private) classImmutableHashBiMap<K,V> -
Uses of BiMap in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement BiMap Modifier and Type Class Description (package private) classAbstractMutableBiMap<K,V>private static classAbstractMutableBiMap.Inverse<K,V>classHashBiMap<K,V>AMutableBiMapwhich uses two hash tables as its underlying data store.classSynchronizedBiMap<K,V>classUnmodifiableBiMap<K,V>
-