Package org.ow2.clif.jenkins.model
Class Measure
java.lang.Object
org.ow2.clif.jenkins.model.Measure
Class that holds statistics for a measure
- Author:
- Julien Coste, Bruno Dillenseger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlonglongdoublelonglonggetMax()longlonggetMin()getName()longgetSize()doubledoublevoidsetAverage(long average) voidsetCountErrors(long countErrors) voidsetMax(long max) voidsetMedian(long median) voidsetMin(long min) voidvoidsetSize(long size) voidsetStdDev(double stdDev) voidsetThroughput(double throughput)
-
Constructor Details
-
Measure
public Measure() -
Measure
public Measure(String name, long size, long average, long median, long min, long max, double stdDev, double throughput, long countErrors)
-
-
Method Details
-
countActions
public long countActions() -
countErrors
public long countErrors() -
errorPercent
public double errorPercent() -
errorPercentFormated
-
getAverage
public long getAverage() -
getAverageFormated
-
setAverage
public void setAverage(long average) -
getMedian
public long getMedian() -
getMedianFormated
-
setMedian
public void setMedian(long median) -
getMax
public long getMax() -
getMaxFormated
-
setMax
public void setMax(long max) -
getMin
public long getMin() -
getMinFormated
-
setMin
public void setMin(long min) -
getSize
public long getSize() -
getSizeFormated
-
setSize
public void setSize(long size) -
setCountErrors
public void setCountErrors(long countErrors) -
getName
-
setName
-
getStdDev
public double getStdDev() -
getStdDevFormated
-
setStdDev
public void setStdDev(double stdDev) -
getThroughput
public double getThroughput() -
getThroughputFormated
-
setThroughput
public void setThroughput(double throughput)
-