Record Class OryzaFunctions.NCROPStress
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.NCROPStress
- Enclosing class:
- OryzaFunctions
public static record OryzaFunctions.NCROPStress(double NFLV, double NSLLV, double RNSTRS, double FNLV, double FNST, double FNSO)
extends Record
-
Constructor Summary
ConstructorDescriptionNCROPStress
(double NFLV, double NSLLV, double RNSTRS, double FNLV, double FNST, double FNSO) Creates an instance of aNCROPStress
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.double
FNLV()
Returns the value of theFNLV
record component.double
FNSO()
Returns the value of theFNSO
record component.double
FNST()
Returns the value of theFNST
record component.final int
hashCode()
Returns a hash code value for this object.double
NFLV()
Returns the value of theNFLV
record component.double
NSLLV()
Returns the value of theNSLLV
record component.double
RNSTRS()
Returns the value of theRNSTRS
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
NCROPStress
public NCROPStress(double NFLV, double NSLLV, double RNSTRS, double FNLV, double FNST, double FNSO) Creates an instance of aNCROPStress
record class.- Parameters:
NFLV
- the value for theNFLV
record componentNSLLV
- the value for theNSLLV
record componentRNSTRS
- the value for theRNSTRS
record componentFNLV
- the value for theFNLV
record componentFNST
- the value for theFNST
record componentFNSO
- the value for theFNSO
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 '=='. -
NFLV
public double NFLV()Returns the value of theNFLV
record component.- Returns:
- the value of the
NFLV
record component
-
NSLLV
public double NSLLV()Returns the value of theNSLLV
record component.- Returns:
- the value of the
NSLLV
record component
-
RNSTRS
public double RNSTRS()Returns the value of theRNSTRS
record component.- Returns:
- the value of the
RNSTRS
record component
-
FNLV
public double FNLV()Returns the value of theFNLV
record component.- Returns:
- the value of the
FNLV
record component
-
FNST
public double FNST()Returns the value of theFNST
record component.- Returns:
- the value of the
FNST
record component
-
FNSO
public double FNSO()Returns the value of theFNSO
record component.- Returns:
- the value of the
FNSO
record component
-