Record Class ExponentialEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.value.ExponentialEnchantmentEffect
- Record Components:
base-exponent-
- All Implemented Interfaces:
EnchantmentValueEffect
public record ExponentialEnchantmentEffect(EnchantmentLevelBasedValue base, EnchantmentLevelBasedValue exponent)
extends Record
implements EnchantmentValueEffect
- Mappings:
Namespace Name named net/minecraft/enchantment/effect/value/ExponentialEnchantmentEffectintermediary net/minecraft/class_12130official dscnamed baseintermediary comp_4985official cnamed exponentintermediary comp_4986official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final EnchantmentLevelBasedValueThe field for thebaserecord component.static final com.mojang.serialization.MapCodec<ExponentialEnchantmentEffect> private final EnchantmentLevelBasedValueThe field for theexponentrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aExponentialEnchantmentEffectrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatbase()Returns the value of thebaserecord component.final booleanIndicates whether some other object is "equal to" this one.exponent()Returns the value of theexponentrecord component.com.mojang.serialization.MapCodec<ExponentialEnchantmentEffect> getCodec()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
base
The field for thebaserecord component. -
exponent
The field for theexponentrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/enchantment/effect/value/ExponentialEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;intermediary field_63423Lnet/minecraft/class_12130;field_63423:Lcom/mojang/serialization/MapCodec;official aLdsc;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
ExponentialEnchantmentEffect
public ExponentialEnchantmentEffect(EnchantmentLevelBasedValue base, EnchantmentLevelBasedValue exponent) Creates an instance of aExponentialEnchantmentEffectrecord class.
-
-
Method Details
-
apply
- Specified by:
applyin interfaceEnchantmentValueEffect- Mappings:
Namespace Name Mixin selector named applyLnet/minecraft/enchantment/effect/EnchantmentValueEffect;apply(ILnet/minecraft/util/math/random/Random;F)Fintermediary method_60213Lnet/minecraft/class_9723;method_60213(ILnet/minecraft/class_5819;F)Fofficial aLdrt;a(ILbgq;F)F
-
getCodec
- Specified by:
getCodecin interfaceEnchantmentValueEffect- Mappings:
Namespace Name Mixin selector named getCodecLnet/minecraft/enchantment/effect/EnchantmentValueEffect;getCodec()Lcom/mojang/serialization/MapCodec;intermediary method_60211Lnet/minecraft/class_9723;method_60211()Lcom/mojang/serialization/MapCodec;official aLdrt;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). -
base
Returns the value of thebaserecord component.- Returns:
- the value of the
baserecord component
-
exponent
Returns the value of theexponentrecord component.- Returns:
- the value of the
exponentrecord component
-