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
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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 '=='. -
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
-