Class TIntIntHashMapDecorator

java.lang.Object
java.util.AbstractMap<Integer,Integer>
gnu.trove.decorator.TIntIntHashMapDecorator
All Implemented Interfaces:
Externalizable, Serializable, Cloneable, Map<Integer,Integer>

public class TIntIntHashMapDecorator extends AbstractMap<Integer,Integer> implements Map<Integer,Integer>, Externalizable, Cloneable
Wrapper class to make a TIntIntHashMap conform to the java.util.Map API. This class simply decorates an underlying TIntIntHashMap and translates the Object-based APIs into their Trove primitive analogs.

Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.

Created: Mon Sep 23 22:07:40 PDT 2002

Author:
Eric D. Friedman, Rob Eden
See Also: