Package tools.refinery.language.utils
Record Class DecisionSettings
java.lang.Object
java.lang.Record
tools.refinery.language.utils.DecisionSettings
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final double
static final double
static final int
-
Constructor Summary
ConstructorsConstructorDescriptionDecisionSettings
(int priority) DecisionSettings
(int priority, double coefficient, double exponent) Creates an instance of aDecisionSettings
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
Returns the value of thecoefficient
record component.final boolean
Indicates whether some other object is "equal to" this one.double
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
public static final double DEFAULT_COEFFICIENT- See Also:
-
DEFAULT_EXPONENT
public static final double DEFAULT_EXPONENT- See Also:
-
-
Constructor Details
-
DecisionSettings
public DecisionSettings(int priority) -
DecisionSettings
public DecisionSettings(int priority, double coefficient, double exponent) 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. All components in this record class are compared with '=='. -
priority
public int priority()Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-
coefficient
public double coefficient()Returns the value of thecoefficient
record component.- Returns:
- the value of the
coefficient
record component
-
exponent
public double exponent()Returns the value of theexponent
record component.- Returns:
- the value of the
exponent
record component
-