Record Class Lintul2Functions.EVAPTRResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.models.lintul2.Lintul2Functions.EVAPTRResult
- Enclosing class:
- Lintul2Functions
-
Constructor Summary
ConstructorDescriptionEVAPTRResult
(double EVAP, double TRAN) Creates an instance of aEVAPTRResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.double
EVAP()
Returns the value of theEVAP
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.double
TRAN()
Returns the value of theTRAN
record component.
-
Constructor Details
-
EVAPTRResult
public EVAPTRResult(double EVAP, double TRAN) Creates an instance of aEVAPTRResult
record class.- Parameters:
EVAP
- the value for theEVAP
record componentTRAN
- the value for theTRAN
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 '=='. -
EVAP
public double EVAP()Returns the value of theEVAP
record component.- Returns:
- the value of the
EVAP
record component
-
TRAN
public double TRAN()Returns the value of theTRAN
record component.- Returns:
- the value of the
TRAN
record component
-