Record Class OryzaFunctions.SRDPRF
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.SRDPRF
- Enclosing class:
- OryzaFunctions
public static record OryzaFunctions.SRDPRF(double RAPSHL, double RAPPPL, double FSLLA)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSRDPRF(double RAPSHL, double RAPPPL, double FSLLA) Creates an instance of aSRDPRFrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doubleFSLLA()Returns the value of theFSLLArecord component.final inthashCode()Returns a hash code value for this object.doubleRAPPPL()Returns the value of theRAPPPLrecord component.doubleRAPSHL()Returns the value of theRAPSHLrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SRDPRF
public SRDPRF(double RAPSHL, double RAPPPL, double FSLLA) Creates an instance of aSRDPRFrecord class.- Parameters:
RAPSHL- the value for theRAPSHLrecord componentRAPPPL- the value for theRAPPPLrecord componentFSLLA- the value for theFSLLArecord 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 '=='. -
RAPSHL
public double RAPSHL()Returns the value of theRAPSHLrecord component.- Returns:
- the value of the
RAPSHLrecord component
-
RAPPPL
public double RAPPPL()Returns the value of theRAPPPLrecord component.- Returns:
- the value of the
RAPPPLrecord component
-
FSLLA
public double FSLLA()Returns the value of theFSLLArecord component.- Returns:
- the value of the
FSLLArecord component
-