All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.Hashtable Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package java.util;

/**
 * @since CLDC 1.0
 */
public class Hashtable {
    public Hashtable() {}
    
    /**
     * @throws IllegalArgumentException
     */
    public Hashtable(int initialCapacity) {}

    public void clear() {}

    /**
     * @throws NullPointerException
     */
    public boolean contains(Object value) {
        return false;
    }

    public boolean containsKey(Object key) {
        return false;
    }

    public Enumeration elements() {
        return null;
    }

    public Object get(Object key) {
        return null;
    }

    public boolean isEmpty() {
        return false;
    }

    public Enumeration keys() {
        return null;
    }

    /**
     * @throws NullPointerException
     */
    public Object put(Object key, Object value) {
        return null;
    }

    protected void rehash() {}

    public Object remove(Object key) {
        return null;
    }

    public int size() {
        return 0;
    }

    public String toString() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy