Record Class LintulCCFunctions.PARTResult
java.lang.Object
java.lang.Record
net.simplace.sim.components.experimental.lintulcc.LintulCCFunctions.PARTResult
- Enclosing class:
- LintulCCFunctions
public static record LintulCCFunctions.PARTResult(double PCRDW, double PCLDW, double PCSDW, double PCEDW)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionPARTResult(double PCRDW, double PCLDW, double PCSDW, double PCEDW) Creates an instance of aPARTResultrecord 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.doublePCEDW()Returns the value of thePCEDWrecord component.doublePCLDW()Returns the value of thePCLDWrecord component.doublePCRDW()Returns the value of thePCRDWrecord component.doublePCSDW()Returns the value of thePCSDWrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PARTResult
public PARTResult(double PCRDW, double PCLDW, double PCSDW, double PCEDW) Creates an instance of aPARTResultrecord class.- Parameters:
PCRDW- the value for thePCRDWrecord componentPCLDW- the value for thePCLDWrecord componentPCSDW- the value for thePCSDWrecord componentPCEDW- the value for thePCEDWrecord 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 '=='. -
PCRDW
public double PCRDW()Returns the value of thePCRDWrecord component.- Returns:
- the value of the
PCRDWrecord component
-
PCLDW
public double PCLDW()Returns the value of thePCLDWrecord component.- Returns:
- the value of the
PCLDWrecord component
-
PCSDW
public double PCSDW()Returns the value of thePCSDWrecord component.- Returns:
- the value of the
PCSDWrecord component
-
PCEDW
public double PCEDW()Returns the value of thePCEDWrecord component.- Returns:
- the value of the
PCEDWrecord component
-