Class DurationReportResultEntity
java.lang.Object
org.camunda.bpm.engine.impl.persistence.entity.ReportResultEntity
org.camunda.bpm.engine.impl.persistence.entity.DurationReportResultEntity
- All Implemented Interfaces:
DurationReportResult
,ReportResult
- Author:
- Roman Smirnov
-
Field Summary
Modifier and TypeFieldDescriptionprotected long
protected long
protected long
Fields inherited from class org.camunda.bpm.engine.impl.persistence.entity.ReportResultEntity
period, periodUnit
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the average duration of all completed instances, which have been started in the given period.long
Returns the greatest duration of all completed instances, which have been started in the given period.long
Returns the smallest duration of all completed instances, which have been started in the given period.void
setAverage
(long average) void
setMaximum
(long maximum) void
setMinimum
(long minimum) toString()
Methods inherited from class org.camunda.bpm.engine.impl.persistence.entity.ReportResultEntity
getPeriod, getPeriodUnit, setPeriod, setPeriodUnit
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.camunda.bpm.engine.history.ReportResult
getPeriod, getPeriodUnit
-
Field Details
-
minimum
protected long minimum -
maximum
protected long maximum -
average
protected long average
-
-
Constructor Details
-
DurationReportResultEntity
public DurationReportResultEntity()
-
-
Method Details
-
getMinimum
public long getMinimum()Description copied from interface:DurationReportResult
Returns the smallest duration of all completed instances, which have been started in the given period.
- Specified by:
getMinimum
in interfaceDurationReportResult
-
setMinimum
public void setMinimum(long minimum) -
getMaximum
public long getMaximum()Description copied from interface:DurationReportResult
Returns the greatest duration of all completed instances, which have been started in the given period.
- Specified by:
getMaximum
in interfaceDurationReportResult
-
setMaximum
public void setMaximum(long maximum) -
getAverage
public long getAverage()Description copied from interface:DurationReportResult
Returns the average duration of all completed instances, which have been started in the given period.
- Specified by:
getAverage
in interfaceDurationReportResult
-
setAverage
public void setAverage(long average) -
toString
-