Record Class OryzaFunctions.IRRIG
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.oryza.OryzaFunctions.IRRIG
- Enclosing class:
- OryzaFunctions
-
Constructor Summary
ConstructorsConstructorDescriptionIRRIG(double IR, double WL0CNT) Creates an instance of aIRRIGrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doubleIR()Returns the value of theIRrecord component.final StringtoString()Returns a string representation of this record class.doubleWL0CNT()Returns the value of theWL0CNTrecord component.
-
Constructor Details
-
IRRIG
public IRRIG(double IR, double WL0CNT) Creates an instance of aIRRIGrecord class.- Parameters:
IR- the value for theIRrecord componentWL0CNT- the value for theWL0CNTrecord 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 '=='. -
IR
public double IR()Returns the value of theIRrecord component.- Returns:
- the value of the
IRrecord component
-
WL0CNT
public double WL0CNT()Returns the value of theWL0CNTrecord component.- Returns:
- the value of the
WL0CNTrecord component
-