/* * This class represents the curve of the class. It consists of an enum * representing the type of curve and a set of cutoffs for the curve. * */ package Visual; import java.util.Collection; class Curve { enum CurveType {Percent, Point} CurveType curveType; Cutoffs cutoffs; }