mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
fun with collections
This commit is contained in:
@ -13,6 +13,10 @@ public interface Map<K, V> {
|
||||
|
||||
public Set<Entry<K, V>> entrySet();
|
||||
|
||||
public Set<K> keySet();
|
||||
|
||||
public Collection<V> values();
|
||||
|
||||
public interface Entry<K, V> {
|
||||
public K getKey();
|
||||
|
||||
|
Reference in New Issue
Block a user