public interface StackInterface { int size(); boolean isEmpty(); E pop(); E top(); void push(E element); }