Record Class FloatValue
java.lang.Object
java.lang.Record
org.microbean.attributes.FloatValue
- Record Components:
value
- the value
- All Implemented Interfaces:
Comparable<FloatValue>
,Constable
,Value<FloatValue>
A
Value
whose value is a float
.- Author:
- Laird Nelson
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal int
compareTo
(FloatValue other) final Optional
<DynamicConstantDesc<FloatValue>> 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 FloatValue
of
(float f) Returns aFloatValue
suitable for the supplied arguments.final String
toString()
Returns a string representation of this record class.float
value()
Returns the value of thevalue
record component.
-
Constructor Details
-
FloatValue
Creates an instance of aFloatValue
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
compareTo
- Specified by:
compareTo
in interfaceComparable<FloatValue>
-
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 aFloatValue
suitable for the supplied arguments.- Parameters:
f
- afloat
- Returns:
- a non-
null
FloatValue
-
value
-