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
ConstructorDescriptionSGPCDT
(double DAYL, double DAYLP, double GPCDT, double RAPCDT) Creates an instance of aSGPCDT
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
DAYL()
Returns the value of theDAYL
record component.double
DAYLP()
Returns the value of theDAYLP
record component.final boolean
Indicates whether some other object is "equal to" this one.double
GPCDT()
Returns the value of theGPCDT
record component.final int
hashCode()
Returns a hash code value for this object.double
RAPCDT()
Returns the value of theRAPCDT
record component.final String
toString()
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 aSGPCDT
record class.- Parameters:
DAYL
- the value for theDAYL
record componentDAYLP
- the value for theDAYLP
record componentGPCDT
- the value for theGPCDT
record componentRAPCDT
- the value for theRAPCDT
record 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 theDAYL
record component.- Returns:
- the value of the
DAYL
record component
-
DAYLP
public double DAYLP()Returns the value of theDAYLP
record component.- Returns:
- the value of the
DAYLP
record component
-
GPCDT
public double GPCDT()Returns the value of theGPCDT
record component.- Returns:
- the value of the
GPCDT
record component
-
RAPCDT
public double RAPCDT()Returns the value of theRAPCDT
record component.- Returns:
- the value of the
RAPCDT
record component
-