Record Class LintulFunctions.DeadRootsStemsRateResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.models.lintul5.LintulFunctions.DeadRootsStemsRateResult
- Enclosing class:
- LintulFunctions
public static record LintulFunctions.DeadRootsStemsRateResult(double DRRT, double DRST)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionDeadRootsStemsRateResult(double DRRT, double DRST) Creates an instance of aDeadRootsStemsRateResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleDRRT()Returns the value of theDRRTrecord component.doubleDRST()Returns the value of theDRSTrecord 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.
-
Constructor Details
-
DeadRootsStemsRateResult
public DeadRootsStemsRateResult(double DRRT, double DRST) Creates an instance of aDeadRootsStemsRateResultrecord class.- Parameters:
DRRT- the value for theDRRTrecord componentDRST- the value for theDRSTrecord 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 '=='. -
DRRT
public double DRRT()Returns the value of theDRRTrecord component.- Returns:
- the value of the
DRRTrecord component
-
DRST
public double DRST()Returns the value of theDRSTrecord component.- Returns:
- the value of the
DRSTrecord component
-