public interface StackMethods { //These are the methods you must write for the Stack lab! public void push(Book newBook); public Book pop(); public Book peek(); public boolean isEmpty(); public void printStack(); public int getSize(); }