Record Class DoubleWithAlpha
java.lang.Object
java.lang.Record
com.github.thedeathlycow.thermoo.impl.environment.attribute.DoubleWithAlpha
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDoubleWithAlpha(double value) DoubleWithAlpha(double value, double alpha) Creates an instance of aDoubleWithAlpharecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoublealpha()Returns the value of thealpharecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.doublevalue()Returns the value of thevaluerecord component.
-
Field Details
-
CODEC
-
-
Constructor Details
-
DoubleWithAlpha
public DoubleWithAlpha(double value) -
DoubleWithAlpha
public DoubleWithAlpha(double value, double alpha) Creates an instance of aDoubleWithAlpharecord class.- Parameters:
value- the value for thevaluerecord componentalpha- the value for thealpharecord 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. All components in this record class are compared with '=='. -
value
public double value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
alpha
public double alpha()Returns the value of thealpharecord component.- Returns:
- the value of the
alpharecord component
-