Record Class OryzaFunctions.ET2
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.ET2
- Enclosing class:
- OryzaFunctions
public static record OryzaFunctions.ET2(double EVSC, double ETD, double TRC, double DT)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionET2(double EVSC, double ETD, double TRC, double DT) Creates an instance of aET2record class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleDT()Returns the value of theDTrecord component.final booleanIndicates whether some other object is "equal to" this one.doubleETD()Returns the value of theETDrecord component.doubleEVSC()Returns the value of theEVSCrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.doubleTRC()Returns the value of theTRCrecord component.
-
Constructor Details
-
ET2
public ET2(double EVSC, double ETD, double TRC, double DT) Creates an instance of aET2record class.- Parameters:
EVSC- the value for theEVSCrecord componentETD- the value for theETDrecord componentTRC- the value for theTRCrecord componentDT- the value for theDTrecord 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 '=='. -
EVSC
public double EVSC()Returns the value of theEVSCrecord component.- Returns:
- the value of the
EVSCrecord component
-
ETD
public double ETD()Returns the value of theETDrecord component.- Returns:
- the value of the
ETDrecord component
-
TRC
public double TRC()Returns the value of theTRCrecord component.- Returns:
- the value of the
TRCrecord component
-
DT
public double DT()Returns the value of theDTrecord component.- Returns:
- the value of the
DTrecord component
-