// CSE 143, Winter 2012 // The Set interface represents the methods of the Set abstract data type (ADT). // These are the methods that any set implementation must have. public interface Set { public void add(E value); public boolean contains(E value); public boolean isEmpty(); public void remove(E value); public int size(); }