|
PCJ API Version 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object bak.pcj.benchmark.Result
This class represents results from benchmarks.
Constructor Summary | |
Result(String benchmarkId,
String dataSetId,
String classId,
String taskId,
String taskDescription,
long time)
Creates a new result. |
Method Summary | |
String |
getBenchmarkId()
Returns the benchmark identifier of this result. |
String |
getClassId()
Returns the class identifier of this result. |
String |
getDataSetId()
Returns the data set identifier of this result. |
String |
getTaskDescription()
Returns the description of the task of this result. |
String |
getTaskId()
Returns the task identifier of this result. |
long |
getTime()
Returns the time registered for this result. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Result(String benchmarkId, String dataSetId, String classId, String taskId, String taskDescription, long time)
benchmarkId
- an identifier of the benchmark that produced the
result. Typically the class name.dataSetId
- an identifier of the data set against which the
benchmark was run.classId
- an identifier of the class that is benchmarked.
Typically the class name.taskId
- an identifier of the task that was measured. Typically
the name of a method in a benchmark.taskDescription
- a description of the task.time
- the time measured for completing the task.
NullPointerException
- if benchmarkId is null;
if dataSetId is null;
if classId is null;
if taskId is null;
if taskDescription is null.
IllegalArgumentException
- if time is negative.Method Detail |
public String getBenchmarkId()
public String getTaskId()
public String getTaskDescription()
public String getDataSetId()
public String getClassId()
public long getTime()
|
PCJ API Version 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |