org.objectweb.jac.lib.java.util
Class Hashtable

java.lang.Object
  extended byjava.util.Dictionary
      extended byjava.util.Hashtable
          extended byorg.objectweb.jac.lib.java.util.Hashtable
All Implemented Interfaces:
Cloneable, Map, Serializable

public class Hashtable
extends Hashtable

See Also:
Serialized Form

Constructor Summary
Hashtable()
           
 
Method Summary
 void clear()
           
 Object clone()
           
 boolean contains(Object p0)
           
 boolean containsKey(Object p0)
           
 boolean containsValue(Object p0)
           
 Enumeration elements()
           
 Set entrySet()
           
 boolean equals(Object o)
           
 Object get(Object p0)
           
 int hashCode()
           
 boolean isEmpty()
           
 Enumeration keys()
           
 Set keySet()
           
 Object put(Object p0, Object p1)
           
 void putAll(Map p0)
           
 Object remove(Object p0)
           
 int size()
           
 String toString()
           
 Collection values()
           
 
Methods inherited from class java.util.Hashtable
rehash
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Hashtable

public Hashtable()
Method Detail

clone

public Object clone()

put

public Object put(Object p0,
                  Object p1)

get

public Object get(Object p0)

contains

public boolean contains(Object p0)

size

public int size()

remove

public Object remove(Object p0)

values

public Collection values()

elements

public Enumeration elements()

clear

public void clear()

keys

public Enumeration keys()

keySet

public Set keySet()

entrySet

public Set entrySet()

isEmpty

public boolean isEmpty()

containsValue

public boolean containsValue(Object p0)

containsKey

public boolean containsKey(Object p0)

putAll

public void putAll(Map p0)

equals

public boolean equals(Object o)

hashCode

public int hashCode()

toString

public String toString()