public interface Database { int STARTSIZE = 10; int size(); void display(); Object find(Object o); boolean add(Object o); boolean delete(Object o); }