Interface BenchmarkResult
- 
- All Known Implementing Classes:
 SingleBenchmarkResult,SubSingleBenchmarkResult
public interface BenchmarkResult 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScoregetAverageScore()StringgetName()FilegetResultDirectory()StringgetResultDirectoryName()booleanhasAllSuccess()booleanhasAnyFailure() 
 - 
 
- 
- 
Method Detail
- 
getName
String getName()
 
- 
getResultDirectoryName
String getResultDirectoryName()
- Returns:
 - the name of the directory that holds the benchmark's results
 
 
- 
getResultDirectory
File getResultDirectory()
- Returns:
 - the benchmark result directory as a file
 
 
- 
hasAnyFailure
boolean hasAnyFailure()
- Returns:
 - true if there is a failed child benchmark and the variable is initialized
 
 
- 
hasAllSuccess
boolean hasAllSuccess()
- Returns:
 - true if all child benchmarks were a success and the variable is initialized
 
 
- 
getAverageScore
Score getAverageScore()
 
 - 
 
 -