home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Java in a Nutshell

Previous Chapter 30
The java.util Package
Next
 

30.4 java.util.Dictionary (JDK 1.0)

This abstract class is the superclass of Hashtable. Other hashtable-like data structures might also extend this class. See Hashtable for more information.

public abstract class Dictionary extends Object {
    // Default Constructor: public Dictionary()
    // Public Instance Methods
            public abstract Enumeration elements();
            public abstract Object get(Object key);
            public abstract boolean isEmpty();
            public abstract Enumeration keys();
            public abstract Object put(Object key, Object value);
            public abstract Object remove(Object key);
            public abstract int size();
}

Extended By:

Hashtable


Previous Home Next
java.util.Date (JDK 1.0) Book Index java.util.EmptyStackException (JDK 1.0)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java