Record Class ValueEffect.Exponential
java.lang.Object
java.lang.Record
net.minestom.server.item.enchant.ValueEffect.Exponential
- All Implemented Interfaces:
Enchantment.Effect, ValueEffect
- Enclosing interface:
ValueEffect
public static record ValueEffect.Exponential(LevelBasedValue base, LevelBasedValue exponent)
extends Record
implements ValueEffect
-
Nested Class Summary
Nested classes/interfaces inherited from interface ValueEffect
ValueEffect.Add, ValueEffect.AllOf, ValueEffect.Exponential, ValueEffect.Multiply, ValueEffect.RemoveBinomial, ValueEffect.Set -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionExponential(LevelBasedValue base, LevelBasedValue exponent) Creates an instance of aExponentialrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatapply(float base, int level) base()Returns the value of thebaserecord component.StructCodec<? extends ValueEffect> codec()final booleanIndicates whether some other object is "equal to" this one.exponent()Returns the value of theexponentrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
CODEC
-
-
Constructor Details
-
Exponential
Creates an instance of aExponentialrecord class.- Parameters:
base- the value for thebaserecord componentexponent- the value for theexponentrecord component
-
-
Method Details
-
apply
public float apply(float base, int level) - Specified by:
applyin interfaceValueEffect
-
codec
- Specified by:
codecin interfaceValueEffect
-
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 withObjects::equals(Object,Object). -
base
Returns the value of thebaserecord component.- Returns:
- the value of the
baserecord component
-
exponent
Returns the value of theexponentrecord component.- Returns:
- the value of the
exponentrecord component
-