mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add java.util.Collection.toArray()
This commit is contained in:
@ -23,6 +23,8 @@ public interface Collection<T> extends Iterable<T> {
|
||||
|
||||
public boolean remove(Object element);
|
||||
|
||||
public Object[] toArray();
|
||||
|
||||
public <S> S[] toArray(S[] array);
|
||||
|
||||
public void clear();
|
||||
|
Reference in New Issue
Block a user