Record Class DoubleValue
java.lang.Object
java.lang.Record
org.microbean.attributes.DoubleValue
- Record Components:
value
- the value
- All Implemented Interfaces:
Comparable<DoubleValue>
,Constable
,Value<DoubleValue>
A
Value
whose value is a double
.- Author:
- Laird Nelson
-
Constructor Summary
ConstructorsConstructorDescriptionDoubleValue
(double value) Creates an instance of aDoubleValue
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal int
compareTo
(DoubleValue other) final Optional
<DynamicConstantDesc<DoubleValue>> final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static final DoubleValue
of
(double d) Returns aDoubleValue
suitable for the supplied arguments.final String
toString()
Returns a string representation of this record class.double
value()
Returns the value of thevalue
record component.
-
Constructor Details
-
DoubleValue
Creates an instance of aDoubleValue
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
compareTo
- Specified by:
compareTo
in interfaceComparable<DoubleValue>
-
describeConstable
- Specified by:
describeConstable
in interfaceConstable
-
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 thecompare
method from their corresponding wrapper classes. -
hashCode
-
toString
-
of
Returns aDoubleValue
suitable for the supplied arguments.- Parameters:
d
- adouble
- Returns:
- a non-
null
DoubleValue
-
value
-