Record Class OryzaFunctions.SGPCDT
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.SGPCDT
- Enclosing class:
- OryzaFunctions
public static record OryzaFunctions.SGPCDT(double DAYL, double DAYLP, double GPCDT, double RAPCDT)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSGPCDT(double DAYL, double DAYLP, double GPCDT, double RAPCDT) Creates an instance of aSGPCDTrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleDAYL()Returns the value of theDAYLrecord component.doubleDAYLP()Returns the value of theDAYLPrecord component.final booleanIndicates whether some other object is "equal to" this one.doubleGPCDT()Returns the value of theGPCDTrecord component.final inthashCode()Returns a hash code value for this object.doubleRAPCDT()Returns the value of theRAPCDTrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SGPCDT
public SGPCDT(double DAYL, double DAYLP, double GPCDT, double RAPCDT) Creates an instance of aSGPCDTrecord class.- Parameters:
DAYL- the value for theDAYLrecord componentDAYLP- the value for theDAYLPrecord componentGPCDT- the value for theGPCDTrecord componentRAPCDT- the value for theRAPCDTrecord 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 '=='. -
DAYL
public double DAYL()Returns the value of theDAYLrecord component.- Returns:
- the value of the
DAYLrecord component
-
DAYLP
public double DAYLP()Returns the value of theDAYLPrecord component.- Returns:
- the value of the
DAYLPrecord component
-
GPCDT
public double GPCDT()Returns the value of theGPCDTrecord component.- Returns:
- the value of the
GPCDTrecord component
-
RAPCDT
public double RAPCDT()Returns the value of theRAPCDTrecord component.- Returns:
- the value of the
RAPCDTrecord component
-