Record Class OryzaFunctions.SSKYC
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.SSKYC
- Enclosing class:
- OryzaFunctions
-
Constructor Summary
ConstructorDescriptionSSKYC
(double SINB, double RDPDR, double RDPDF) Creates an instance of aSSKYC
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.double
RDPDF()
Returns the value of theRDPDF
record component.double
RDPDR()
Returns the value of theRDPDR
record component.double
SINB()
Returns the value of theSINB
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SSKYC
public SSKYC(double SINB, double RDPDR, double RDPDF) Creates an instance of aSSKYC
record class.- Parameters:
SINB
- the value for theSINB
record componentRDPDR
- the value for theRDPDR
record componentRDPDF
- the value for theRDPDF
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 '=='. -
SINB
public double SINB()Returns the value of theSINB
record component.- Returns:
- the value of the
SINB
record component
-
RDPDR
public double RDPDR()Returns the value of theRDPDR
record component.- Returns:
- the value of the
RDPDR
record component
-
RDPDF
public double RDPDF()Returns the value of theRDPDF
record component.- Returns:
- the value of the
RDPDF
record component
-