Record Class GroupByBucket
java.lang.Object
java.lang.Record
org.praxisplatform.uischema.stats.dto.GroupByBucket
public record GroupByBucket(Object key, String label, Number value, long count, Map<String,Number> values)
extends Record
Group-by bucket in stats responses.
-
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.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.label()Returns the value of thelabelrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.values()Returns the value of thevaluesrecord component.
-
Constructor Details
-
GroupByBucket
-
GroupByBucket
Creates an instance of aGroupByBucketrecord class.- Parameters:
key- the value for thekeyrecord componentlabel- the value for thelabelrecord componentvalue- the value for thevaluerecord componentcount- the value for thecountrecord componentvalues- the value for thevaluesrecord 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 '=='. -
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
-
values
Returns the value of thevaluesrecord component.- Returns:
- the value of the
valuesrecord component
-