Record Class RemoveBinomialEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.value.RemoveBinomialEnchantmentEffect
- Record Components:
chance
-
- All Implemented Interfaces:
EnchantmentValueEffect
public record RemoveBinomialEnchantmentEffect(EnchantmentLevelBasedValue chance)
extends Record
implements EnchantmentValueEffect
- Mappings:
Namespace Name named net/minecraft/enchantment/effect/value/RemoveBinomialEnchantmentEffect
intermediary net/minecraft/class_9728
official daz
named chance
intermediary comp_2738
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final EnchantmentLevelBasedValue
The field for thechance
record component.static final com.mojang.serialization.MapCodec
<RemoveBinomialEnchantmentEffect> -
Constructor Summary
ConstructorDescriptionRemoveBinomialEnchantmentEffect
(EnchantmentLevelBasedValue enchantmentLevelBasedValue) -
Method Summary
Modifier and TypeMethodDescriptionfloat
chance()
Returns the value of thechance
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<RemoveBinomialEnchantmentEffect> getCodec()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
chance
The field for thechance
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/effect/value/RemoveBinomialEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51714
Lnet/minecraft/class_9728;field_51714:Lcom/mojang/serialization/MapCodec;
official a
Ldaz;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
RemoveBinomialEnchantmentEffect
-
-
Method Details
-
apply
- Specified by:
apply
in interfaceEnchantmentValueEffect
- Mappings:
Namespace Name Mixin selector named apply
Lnet/minecraft/enchantment/effect/EnchantmentValueEffect;apply(ILnet/minecraft/util/math/random/Random;F)F
intermediary method_60213
Lnet/minecraft/class_9723;method_60213(ILnet/minecraft/class_5819;F)F
official a
Ldau;a(ILayw;F)F
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentValueEffect
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/enchantment/effect/EnchantmentValueEffect;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_60211
Lnet/minecraft/class_9723;method_60211()Lcom/mojang/serialization/MapCodec;
official a
Ldau;a()Lcom/mojang/serialization/MapCodec;
-
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
-