mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
fun with collections
This commit is contained in:
@ -3,9 +3,9 @@ package java.util;
|
||||
public interface Collection<T> extends Iterable<T> {
|
||||
public int size();
|
||||
|
||||
public boolean add(T entry);
|
||||
public boolean add(T element);
|
||||
|
||||
public boolean remove(T entry);
|
||||
public boolean remove(T element);
|
||||
|
||||
public void clear();
|
||||
}
|
||||
|
Reference in New Issue
Block a user