public interface List extends Collection { int size(); boolean isEmpty(); boolean add(E e); boolean remove(Object o); Iterator iterator(); }