mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
63 lines
1.3 KiB
Java
63 lines
1.3 KiB
Java
package java.util;
|
|
|
|
public class Hashtable<K, V> implements Map<K, V> {
|
|
private final HashMap<K, V> map;
|
|
|
|
public Hashtable(int capacity) {
|
|
map = new HashMap(capacity);
|
|
}
|
|
|
|
public Hashtable() {
|
|
this(0);
|
|
}
|
|
|
|
public synchronized int size() {
|
|
return map.size();
|
|
}
|
|
|
|
public synchronized boolean containsKey(K key) {
|
|
return map.containsKey(key);
|
|
}
|
|
|
|
public synchronized boolean containsValue(V value) {
|
|
return map.containsValue(value);
|
|
}
|
|
|
|
public synchronized V get(K key) {
|
|
return map.get(key);
|
|
}
|
|
|
|
public synchronized V put(K key, V value) {
|
|
return map.put(key, value);
|
|
}
|
|
|
|
public synchronized V remove(K key) {
|
|
return map.remove(key);
|
|
}
|
|
|
|
public synchronized void clear() {
|
|
map.clear();
|
|
}
|
|
|
|
public Enumeration<K> keys() {
|
|
return new Collections.IteratorEnumeration(keySet().iterator());
|
|
}
|
|
|
|
public Enumeration<V> elements() {
|
|
return new Collections.IteratorEnumeration(values().iterator());
|
|
}
|
|
|
|
public Set<Entry<K, V>> entrySet() {
|
|
return new Collections.SynchronizedSet(this, map.entrySet());
|
|
}
|
|
|
|
public Set<K> keySet() {
|
|
return new Collections.SynchronizedSet(this, map.keySet());
|
|
}
|
|
|
|
public Collection<V> values() {
|
|
return new Collections.SynchronizedCollection(this, map.values());
|
|
}
|
|
|
|
}
|