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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
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
-