mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
implement a few more classpath methods, including Collection.addAll and Collection.toArray
This commit is contained in:
@ -19,7 +19,11 @@ public interface Collection<T> extends Iterable<T> {
|
||||
|
||||
public boolean add(T element);
|
||||
|
||||
public boolean addAll(Collection<? extends T> collection);
|
||||
|
||||
public boolean remove(T element);
|
||||
|
||||
public <T> T[] toArray(T[] array);
|
||||
|
||||
public void clear();
|
||||
}
|
||||
|
Reference in New Issue
Block a user