Record Class AddEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.value.AddEnchantmentEffect
- Record Components:
value
-
- All Implemented Interfaces:
EnchantmentValueEffect
public record AddEnchantmentEffect(EnchantmentLevelBasedValue value)
extends Record
implements EnchantmentValueEffect
- Mappings:
Namespace Name named net/minecraft/enchantment/effect/value/AddEnchantmentEffect
intermediary net/minecraft/class_9711
official dal
named value
intermediary comp_2704
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<AddEnchantmentEffect> private final EnchantmentLevelBasedValue
The field for thevalue
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfloat
final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<AddEnchantmentEffect> getCodec()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
value
The field for thevalue
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/effect/value/AddEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51697
Lnet/minecraft/class_9711;field_51697:Lcom/mojang/serialization/MapCodec;
official a
Ldal;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
AddEnchantmentEffect
-
-
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)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-