Record Class AgentOverviewDashboardService.EvaluatorCounts
java.lang.Object
java.lang.Record
com.flowable.platform.service.dashboard.agent.AgentOverviewDashboardService.EvaluatorCounts
- Enclosing class:
AgentOverviewDashboardService
protected static record AgentOverviewDashboardService.EvaluatorCounts(long evaluations, long passed, long failed)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedEvaluatorCounts(long evaluations, long passed, long failed) Creates an instance of aEvaluatorCountsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.longReturns the value of theevaluationsrecord component.longfailed()Returns the value of thefailedrecord component.final inthashCode()Returns a hash code value for this object.longpassed()Returns the value of thepassedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
EvaluatorCounts
protected EvaluatorCounts(long evaluations, long passed, long failed) Creates an instance of aEvaluatorCountsrecord class.- Parameters:
evaluations- the value for theevaluationsrecord componentpassed- the value for thepassedrecord componentfailed- the value for thefailedrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
evaluations
public long evaluations()Returns the value of theevaluationsrecord component.- Returns:
- the value of the
evaluationsrecord component
-
passed
public long passed()Returns the value of thepassedrecord component.- Returns:
- the value of the
passedrecord component
-
failed
public long failed()Returns the value of thefailedrecord component.- Returns:
- the value of the
failedrecord component
-