package Grades; import Visual.*; import Info.*; import Prediction.*; import Reports.*; import Assignments.*; import java.util.Collection; /** * Curve is a representation of a curve of the class */ public class Curve { /** * The enum for Curve to define it as a percentile or by points */ enum CurveType {Percent, Point} /** * The type of Curve the gradebook is currently using */ CurveType curveType; /** * The cutoffs for the class grades */ Cutoffs cutoffs; }