package enumeration;

/**
 * Kyle Kelly
 * A constant enumeration.
 */
public interface ConstantValue {

    /**
     * Gets this constant's value.
     */
    public int getValue();

}
