package enumeration;
/**
 * Kyle Wayne Kelly
 * Used to create a discrete range of values.
 */
public interface Enumeration {

    /**
     * Move forward through the list.
     */
    public void next();

    /**
     * Move backward through the list.
     */
    public void previous();
    
    /**
     * Get the current object.
     */
    public Object current();

}
