Record Class DistributionBucket
java.lang.Object
java.lang.Record
org.praxisplatform.uischema.stats.dto.DistributionBucket
public record DistributionBucket(Object from, Object to, Object key, String label, Number value, long count)
extends Record
Canonical bucket for distribution stats.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongcount()Returns the value of thecountrecord component.final booleanIndicates whether some other object is "equal to" this one.from()Returns the value of thefromrecord component.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.label()Returns the value of thelabelrecord component.to()Returns the value of thetorecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
DistributionBucket
public DistributionBucket(Object from, Object to, Object key, String label, Number value, long count) Creates an instance of aDistributionBucketrecord class.- Parameters:
from- the value for thefromrecord componentto- the value for thetorecord componentkey- the value for thekeyrecord componentlabel- the value for thelabelrecord componentvalue- the value for thevaluerecord componentcount- the value for thecountrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
from
Returns the value of thefromrecord component.- Returns:
- the value of the
fromrecord component
-
to
Returns the value of thetorecord component.- Returns:
- the value of the
torecord component
-
key
Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
label
Returns the value of thelabelrecord component.- Returns:
- the value of the
labelrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
count
public long count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-