Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 12, 2020 07:05
Show Gist options
  • Save uncoded-ro/98f2b2e4fb7df7d6210cca5de7e5efcc to your computer and use it in GitHub Desktop.
Save uncoded-ro/98f2b2e4fb7df7d6210cca5de7e5efcc to your computer and use it in GitHub Desktop.
public interface Collection<E> extends Iterable<E> {
int size();
boolean isEmpty();
boolean contains(Object o);
Iterator<E> iterator();
Object[] toArray();
<T> T[] toArray(T[] a);
boolean add(E e);
boolean remove(Object o);
boolean containsAll(Collection<?> c);
boolean addAll(Collection<? extends E> c);
boolean removeAll(Collection<?> c);
boolean retainAll(Collection<?> c);
void clear();
boolean equals(Object o);
int hashCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment