public GradedColumnData(string name, GradedColumnType type, string comparison, string method)
 {
     Name         = name;
     Type         = type;
     Comparison   = comparison;
     TimingMethod = method;
 }
Ejemplo n.º 2
0
 private static string GetColumnType(GradedColumnType type)
 {
     if (type == GradedColumnType.SplitTime)
     {
         return("Split Time");
     }
     else if (type == GradedColumnType.Delta)
     {
         return("Delta");
     }
     else if (type == GradedColumnType.DeltaorSplitTime)
     {
         return("Delta or Split Time");
     }
     else if (type == GradedColumnType.SegmentTime)
     {
         return("Segment Time");
     }
     else if (type == GradedColumnType.SegmentDelta)
     {
         return("Segment Delta");
     }
     else
     {
         return("Segment Delta or Segment Time");
     }
 }