Package net.minestom.server.item.enchant
Record Class ValueEffect.RemoveBinomial
java.lang.Object
java.lang.Record
net.minestom.server.item.enchant.ValueEffect.RemoveBinomial
- All Implemented Interfaces:
Enchantment.Effect
,ValueEffect
- Enclosing interface:
ValueEffect
public static record ValueEffect.RemoveBinomial(@NotNull LevelBasedValue chance)
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
-
Constructor Summary
ConstructorDescriptionRemoveBinomial
(@NotNull LevelBasedValue chance) Creates an instance of aRemoveBinomial
record class. -
Method Summary
Modifier and TypeMethodDescriptionfloat
apply
(float base, int level) @NotNull LevelBasedValue
chance()
Returns the value of thechance
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.nbtType()
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
NBT_TYPE
-
-
Constructor Details
-
RemoveBinomial
Creates an instance of aRemoveBinomial
record class.- Parameters:
chance
- the value for thechance
record component
-
-
Method Details
-
apply
public float apply(float base, int level) - Specified by:
apply
in interfaceValueEffect
-
nbtType
- Specified by:
nbtType
in 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)
. -
chance
Returns the value of thechance
record component.- Returns:
- the value of the
chance
record component
-