Package net.minestom.server.item.enchant
Record Class ValueEffect.Multiply
java.lang.Object
java.lang.Record
net.minestom.server.item.enchant.ValueEffect.Multiply
- All Implemented Interfaces:
Enchantment.Effect,ValueEffect
- Enclosing interface:
ValueEffect
public static record ValueEffect.Multiply(@NotNull LevelBasedValue factor)
extends Record
implements ValueEffect
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.item.enchant.ValueEffect
ValueEffect.Add, ValueEffect.AllOf, ValueEffect.Multiply, ValueEffect.RemoveBinomial, ValueEffect.Set -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMultiply(@NotNull LevelBasedValue factor) Creates an instance of aMultiplyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatapply(float base, int level) final booleanIndicates whether some other object is "equal to" this one.@NotNull LevelBasedValuefactor()Returns the value of thefactorrecord component.final inthashCode()Returns a hash code value for this object.@NotNull BinaryTagSerializer<ValueEffect.Multiply> nbtType()final StringtoString()Returns a string representation of this record class.
-
Field Details
-
NBT_TYPE
-
-
Constructor Details
-
Multiply
Creates an instance of aMultiplyrecord class.- Parameters:
factor- the value for thefactorrecord component
-
-
Method Details
-
apply
public float apply(float base, int level) - Specified by:
applyin interfaceValueEffect
-
nbtType
- Specified by:
nbtTypein interfaceValueEffect
-
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 withObjects::equals(Object,Object). -
factor
Returns the value of thefactorrecord component.- Returns:
- the value of the
factorrecord component
-