Package me.lokka30.levelledmobs.rules
Record Class FineTuningAttributes.Multiplier
java.lang.Object
java.lang.Record
me.lokka30.levelledmobs.rules.FineTuningAttributes.Multiplier
- Enclosing class:
- FineTuningAttributes
-
Constructor Summary
ConstructorDescriptionMultiplier
(Addition addition, boolean useStacked, float value) Creates an instance of aMultiplier
record class. -
Method Summary
Modifier and TypeMethodDescriptionaddition()
Returns the value of theaddition
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull String
toString()
Returns a string representation of this record class.boolean
Returns the value of theuseStacked
record component.float
value()
Returns the value of thevalue
record component.
-
Constructor Details
-
Multiplier
Creates an instance of aMultiplier
record class.- Parameters:
addition
- the value for theaddition
record componentuseStacked
- the value for theuseStacked
record componentvalue
- the value for thevalue
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 '=='. -
addition
Returns the value of theaddition
record component.- Returns:
- the value of the
addition
record component
-
useStacked
public boolean useStacked()Returns the value of theuseStacked
record component.- Returns:
- the value of the
useStacked
record component
-
value
public float value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-