Record Class InternalizationEngine.Decision
java.lang.Object
java.lang.Record
com.quantfinlib.crb.InternalizationEngine.Decision
- Enclosing class:
InternalizationEngine
public static record InternalizationEngine.Decision(double internalized, double routed, double improvementBps)
extends Record
Where one flow went, and what the client got for it.
-
Constructor Summary
ConstructorsConstructorDescriptionDecision(double internalized, double routed, double improvementBps) Creates an instance of aDecisionrecord 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.doubleReturns the value of theimprovementBpsrecord component.doubleReturns the value of theinternalizedrecord component.doublerouted()Returns the value of theroutedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Decision
public Decision(double internalized, double routed, double improvementBps) Creates an instance of aDecisionrecord class.- Parameters:
internalized- the value for theinternalizedrecord componentrouted- the value for theroutedrecord componentimprovementBps- the value for theimprovementBpsrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
internalized
public double internalized()Returns the value of theinternalizedrecord component.- Returns:
- the value of the
internalizedrecord component
-
routed
public double routed()Returns the value of theroutedrecord component.- Returns:
- the value of the
routedrecord component
-
improvementBps
public double improvementBps()Returns the value of theimprovementBpsrecord component.- Returns:
- the value of the
improvementBpsrecord component
-