Record Class LintulFunctions.RELGRResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.models.lintul5.LintulFunctions.RELGRResult
- Enclosing class:
- LintulFunctions
public static record LintulFunctions.RELGRResult(double RWLVG, double RWRT, double RWST, double RWSO)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionRELGRResult(double RWLVG, double RWRT, double RWST, double RWSO) Creates an instance of aRELGRResultrecord 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.doubleRWLVG()Returns the value of theRWLVGrecord component.doubleRWRT()Returns the value of theRWRTrecord component.doubleRWSO()Returns the value of theRWSOrecord component.doubleRWST()Returns the value of theRWSTrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RELGRResult
public RELGRResult(double RWLVG, double RWRT, double RWST, double RWSO) Creates an instance of aRELGRResultrecord class.- Parameters:
RWLVG- the value for theRWLVGrecord componentRWRT- the value for theRWRTrecord componentRWST- the value for theRWSTrecord componentRWSO- the value for theRWSOrecord 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 '=='. -
RWLVG
public double RWLVG()Returns the value of theRWLVGrecord component.- Returns:
- the value of the
RWLVGrecord component
-
RWRT
public double RWRT()Returns the value of theRWRTrecord component.- Returns:
- the value of the
RWRTrecord component
-
RWST
public double RWST()Returns the value of theRWSTrecord component.- Returns:
- the value of the
RWSTrecord component
-
RWSO
public double RWSO()Returns the value of theRWSOrecord component.- Returns:
- the value of the
RWSOrecord component
-