Record Class LintulFunctions.SUBPARResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.models.lintul5.LintulFunctions.SUBPARResult
- Enclosing class:
- LintulFunctions
public static record LintulFunctions.SUBPARResult(double FRT, double FLV, double FST, double FSO)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSUBPARResult(double FRT, double FLV, double FST, double FSO) Creates an instance of aSUBPARResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doubleFLV()Returns the value of theFLVrecord component.doubleFRT()Returns the value of theFRTrecord component.doubleFSO()Returns the value of theFSOrecord component.doubleFST()Returns the value of theFSTrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SUBPARResult
public SUBPARResult(double FRT, double FLV, double FST, double FSO) Creates an instance of aSUBPARResultrecord class.- Parameters:
FRT- the value for theFRTrecord componentFLV- the value for theFLVrecord componentFST- the value for theFSTrecord componentFSO- the value for theFSOrecord 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 '=='. -
FRT
public double FRT()Returns the value of theFRTrecord component.- Returns:
- the value of the
FRTrecord component
-
FLV
public double FLV()Returns the value of theFLVrecord component.- Returns:
- the value of the
FLVrecord component
-
FST
public double FST()Returns the value of theFSTrecord component.- Returns:
- the value of the
FSTrecord component
-
FSO
public double FSO()Returns the value of theFSOrecord component.- Returns:
- the value of the
FSOrecord component
-