Record Class MeasurementScale<U>
java.lang.Object
java.lang.Record
energy.eddie.regionconnector.us.green.button.providers.MeasurementScale<U>
-
Constructor Summary
ConstructorsConstructorDescriptionMeasurementScale(U unit, int scale) Creates an instance of aMeasurementScalerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intscale()Returns the value of thescalerecord component.scaled(long value) final StringtoString()Returns a string representation of this record class.unit()Returns the value of theunitrecord component.
-
Constructor Details
-
MeasurementScale
Creates an instance of aMeasurementScalerecord class.- Parameters:
unit- the value for theunitrecord componentscale- the value for thescalerecord component
-
-
Method Details
-
scaled
-
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 '=='. -
unit
Returns the value of theunitrecord component.- Returns:
- the value of the
unitrecord component
-
scale
public int scale()Returns the value of thescalerecord component.- Returns:
- the value of the
scalerecord component
-