public static String getCSVHeader() { return "ExecutionOrder;" + CommandBenchmarkParams.getCSVHeader() + ";" + CommandBenchmarkStats.getCSVHeader() + ";" + "CounterType"; }
public String toCSVRow() { return executionOrder + ";" + params.toCSVRow() + ";" + stats.toCSVRow() + ";" + counterType.toString(); }