Record Class ValueEffect.Set
java.lang.Object
java.lang.Record
net.minestom.server.item.enchant.ValueEffect.Set
- All Implemented Interfaces:
Enchantment.Effect
,ValueEffect
- Enclosing interface:
ValueEffect
public static record ValueEffect.Set(@NotNull LevelBasedValue value)
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
ConstructorsConstructorDescriptionSet
(@NotNull LevelBasedValue value) Creates an instance of aSet
record class. -
Method Summary
Modifier and TypeMethodDescriptionfloat
apply
(float base, int level) @NotNull StructCodec
<ValueEffect.Set> codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.@NotNull LevelBasedValue
value()
Returns the value of thevalue
record component.
-
Field Details
-
CODEC
-
-
Constructor Details
-
Set
Creates an instance of aSet
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
apply
public float apply(float base, int level) - Specified by:
apply
in interfaceValueEffect
-
codec
- Specified by:
codec
in 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)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-