Package tools.refinery.language.utils
Record Class DecisionSettings
java.lang.Object
java.lang.Record
tools.refinery.language.utils.DecisionSettings
public record DecisionSettings(int priority, BigDecimal coefficient, BigDecimal exponent)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BigDecimal
static final BigDecimal
static final int
-
Constructor Summary
ConstructorsConstructorDescriptionDecisionSettings
(int priority) DecisionSettings
(int priority, BigDecimal coefficient, BigDecimal exponent) Creates an instance of aDecisionSettings
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecoefficient
record component.final boolean
Indicates whether some other object is "equal to" this one.exponent()
Returns the value of theexponent
record component.final int
hashCode()
Returns a hash code value for this object.int
priority()
Returns the value of thepriority
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
DEFAULT_PRIORITY
public static final int DEFAULT_PRIORITY- See Also:
-
DEFAULT_COEFFICIENT
-
DEFAULT_EXPONENT
-
-
Constructor Details
-
DecisionSettings
public DecisionSettings(int priority) -
DecisionSettings
Creates an instance of aDecisionSettings
record class.- Parameters:
priority
- the value for thepriority
record componentcoefficient
- the value for thecoefficient
record componentexponent
- the value for theexponent
record 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 '=='. -
priority
public int priority()Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-
coefficient
Returns the value of thecoefficient
record component.- Returns:
- the value of the
coefficient
record component
-
exponent
Returns the value of theexponent
record component.- Returns:
- the value of the
exponent
record component
-