Uses of Class
gnu.trove.TIntObjectHashMap
-
Packages that use TIntObjectHashMap Package Description gnu.trove gnu.trove.decorator -
-
Uses of TIntObjectHashMap in gnu.trove
Methods in gnu.trove that return TIntObjectHashMap Modifier and Type Method Description TIntObjectHashMap<V>
TIntObjectHashMap. clone()
Methods in gnu.trove with parameters of type TIntObjectHashMap Modifier and Type Method Description void
TIntObjectHashMap. putAll(TIntObjectHashMap<V> map)
Put all the entries from the given map into this map.static <T> java.util.Map<java.lang.Integer,T>
Decorators. wrap(TIntObjectHashMap<T> map)
Wrap the given map in a decorator that uses the standardMap
interface.Constructors in gnu.trove with parameters of type TIntObjectHashMap Constructor Description TIntObjectIterator(TIntObjectHashMap<V> map)
Creates an iterator over the specified map -
Uses of TIntObjectHashMap in gnu.trove.decorator
Fields in gnu.trove.decorator declared as TIntObjectHashMap Modifier and Type Field Description protected TIntObjectHashMap<V>
TIntObjectHashMapDecorator. _map
the wrapped primitive mapMethods in gnu.trove.decorator that return TIntObjectHashMap Modifier and Type Method Description TIntObjectHashMap<V>
TIntObjectHashMapDecorator. getMap()
Returns a reference to the map wrapped by this decorator.Constructors in gnu.trove.decorator with parameters of type TIntObjectHashMap Constructor Description TIntObjectHashMapDecorator(TIntObjectHashMap<V> map)
Creates a wrapper that decorates the specified primitive map.
-