mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Added methods isEmpty(), putAll(), toArray() to interfaces List and Map
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
package java.util;
|
||||
|
||||
public interface Map<K, V> {
|
||||
public boolean isEmpty();
|
||||
|
||||
public int size();
|
||||
|
||||
public boolean containsKey(K key);
|
||||
@ -11,6 +13,8 @@ public interface Map<K, V> {
|
||||
|
||||
public V put(K key, V value);
|
||||
|
||||
public void putAll(Map<? extends K,? extends V> elts);
|
||||
|
||||
public V remove(K key);
|
||||
|
||||
public void clear();
|
||||
|
Reference in New Issue
Block a user