Record Class LintulCCFunctions.WFLOWResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.lintulcc.LintulCCFunctions.WFLOWResult
- Enclosing class:
- LintulCCFunctions
-
Constructor Summary
ConstructorDescriptionWFLOWResult
(Double[] WCL, Double[] WL, double DRAIN) Creates an instance of aWFLOWResult
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
DRAIN()
Returns the value of theDRAIN
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.Double[]
WCL()
Returns the value of theWCL
record component.Double[]
WL()
Returns the value of theWL
record component.
-
Constructor Details
-
WFLOWResult
Creates an instance of aWFLOWResult
record class.- Parameters:
WCL
- the value for theWCL
record componentWL
- the value for theWL
record componentDRAIN
- the value for theDRAIN
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
WCL
Returns the value of theWCL
record component.- Returns:
- the value of the
WCL
record component
-
WL
Returns the value of theWL
record component.- Returns:
- the value of the
WL
record component
-
DRAIN
public double DRAIN()Returns the value of theDRAIN
record component.- Returns:
- the value of the
DRAIN
record component
-