/* Copyright (c) 2008-2014, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ package java.util; public class Hashtable implements Map { private final HashMap map; public Hashtable(int capacity) { map = new HashMap(capacity); } public Hashtable() { this(0); } public Hashtable(Map m) { this(m.size()); for (Entry entry : m.entrySet()) { put(entry.getKey(), entry.getValue()); } } public synchronized String toString() { return map.toString(); } public synchronized boolean isEmpty() { return map.isEmpty(); } public synchronized int size() { return map.size(); } public synchronized boolean containsKey(Object key) { return map.containsKey(key); } public synchronized boolean containsValue(Object value) { return map.containsValue(value); } public synchronized V get(Object key) { return map.get(key); } public synchronized V put(K key, V value) { return map.put(key, value); } public synchronized void putAll(Map elts) { map.putAll(elts); } public synchronized V remove(Object key) { return map.remove(key); } public synchronized void clear() { map.clear(); } public Enumeration keys() { return new Collections.IteratorEnumeration(keySet().iterator()); } public Enumeration elements() { return new Collections.IteratorEnumeration(values().iterator()); } public Set> entrySet() { return new Collections.SynchronizedSet(this, map.entrySet()); } public Set keySet() { return new Collections.SynchronizedSet(this, map.keySet()); } public Collection values() { return new Collections.SynchronizedCollection(this, map.values()); } }