Class IntHashtable

java.lang.Object
java.util.Dictionary
com.kheops.util.IntHashtable
All Implemented Interfaces:
Serializable, Cloneable

public class IntHashtable extends Dictionary implements Cloneable, Serializable
A Hashtable that uses ints as the keys.

Use just like java.util.Hashtable, except that the keys must be ints. This is much faster than creating a new Integer for each access.

Fetch the software.
Fetch the entire Acme package.

See Also:
  • Constructor Details

    • IntHashtable

      public IntHashtable(int initialCapacity, float loadFactor)
    • IntHashtable

      public IntHashtable(int initialCapacity)
    • IntHashtable

      public IntHashtable()
  • Method Details