mirror of
https://github.com/corda/corda.git
synced 2025-01-23 12:58:35 +00:00
Brought more in line with Sun's SDK
This commit is contained in:
parent
9023899c81
commit
c5dd57f74c
@ -15,17 +15,17 @@ public interface Map<K, V> {
|
|||||||
|
|
||||||
public int size();
|
public int size();
|
||||||
|
|
||||||
public boolean containsKey(K key);
|
public boolean containsKey(Object obj);
|
||||||
|
|
||||||
public boolean containsValue(V value);
|
public boolean containsValue(Object obj);
|
||||||
|
|
||||||
public V get(K key);
|
public V get(Object key);
|
||||||
|
|
||||||
public V put(K key, V value);
|
public V put(K key, V value);
|
||||||
|
|
||||||
public void putAll(Map<? extends K,? extends V> elts);
|
public void putAll(Map<? extends K,? extends V> elts);
|
||||||
|
|
||||||
public V remove(K key);
|
public V remove(Object key);
|
||||||
|
|
||||||
public void clear();
|
public void clear();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user