public interface Stack { boolean isEmpty(); E peek(); E pop(); void push( E element); }