Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c04e2cd1fff82330941869dd83e024a8b7cd394b (plain) (blame)
1
2
3
4
5
6
7
8
9
package java.util;

public interface Collection<T> {
	public Iterator<T> iterator();
	public int size();
	public T get(int index);
	public boolean addAll(Collection<T> c);
	public T[] toArray(T[] o);
}

Back to the top