Record Class LintulCCFunctions.WFLOWResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.lintulcc.LintulCCFunctions.WFLOWResult
- Enclosing class:
- LintulCCFunctions
-
Constructor Summary
ConstructorsConstructorDescriptionWFLOWResult(Double[] WCL, Double[] WL, double DRAIN) Creates an instance of aWFLOWResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleDRAIN()Returns the value of theDRAINrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Double[]WCL()Returns the value of theWCLrecord component.Double[]WL()Returns the value of theWLrecord component.
-
Constructor Details
-
WFLOWResult
Creates an instance of aWFLOWResultrecord class.- Parameters:
WCL- the value for theWCLrecord componentWL- the value for theWLrecord componentDRAIN- the value for theDRAINrecord 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 theWCLrecord component.- Returns:
- the value of the
WCLrecord component
-
WL
Returns the value of theWLrecord component.- Returns:
- the value of the
WLrecord component
-
DRAIN
public double DRAIN()Returns the value of theDRAINrecord component.- Returns:
- the value of the
DRAINrecord component
-