mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
sketch a few more classpath classes
This commit is contained in:
19
classpath/java/util/Map.java
Normal file
19
classpath/java/util/Map.java
Normal file
@ -0,0 +1,19 @@
|
||||
package java.util;
|
||||
|
||||
public interface Map<K, V> {
|
||||
public int size();
|
||||
|
||||
public V get(K key);
|
||||
|
||||
public V put(K key, V value);
|
||||
|
||||
public V remove(K key);
|
||||
|
||||
public interface Entry<K, V> {
|
||||
public K getKey();
|
||||
|
||||
public V getValue();
|
||||
|
||||
public void setValue(V value);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user