Package net.minecraft.enchantment
Record Class EnchantmentLevelBasedValueType.LevelsSquared
java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValueType.LevelsSquared
- Record Components:
added
-
- All Implemented Interfaces:
EnchantmentLevelBasedValueType
- Enclosing interface:
EnchantmentLevelBasedValueType
public static record EnchantmentLevelBasedValueType.LevelsSquared(float added)
extends Record
implements EnchantmentLevelBasedValueType
- Mappings:
Namespace Name named net/minecraft/enchantment/EnchantmentLevelBasedValueType$LevelsSquared
intermediary net/minecraft/class_9704$class_9708
official dah$d
named added
intermediary comp_2697
official d
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValueType
EnchantmentLevelBasedValueType.Clamped, EnchantmentLevelBasedValueType.Constant, EnchantmentLevelBasedValueType.Fraction, EnchantmentLevelBasedValueType.LevelsSquared, EnchantmentLevelBasedValueType.Linear
-
Field Summary
Modifier and TypeFieldDescriptionprivate final float
The field for theadded
record component.static final com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValueType.LevelsSquared> Fields inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValueType
BASE_CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfloat
added()
Returns the value of theadded
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValueType.LevelsSquared> getCodec()
float
getValue
(int level) final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
added
private final float addedThe field for theadded
record component. -
CODEC
public static final com.mojang.serialization.MapCodec<EnchantmentLevelBasedValueType.LevelsSquared> CODEC- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType$LevelsSquared;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51695
Lnet/minecraft/class_9704$class_9708;field_51695:Lcom/mojang/serialization/MapCodec;
official c
Ldah$d;c:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
LevelsSquared
public LevelsSquared(float float2)
-
-
Method Details
-
getValue
public float getValue(int level) - Specified by:
getValue
in interfaceEnchantmentLevelBasedValueType
- Mappings:
Namespace Name Mixin selector named getValue
Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType;getValue(I)F
intermediary method_60188
Lnet/minecraft/class_9704;method_60188(I)F
official a
Ldah;a(I)F
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentLevelBasedValueType
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_60185
Lnet/minecraft/class_9704;method_60185()Lcom/mojang/serialization/MapCodec;
official a
Ldah;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 with '=='. -
added
public float added()Returns the value of theadded
record component.- Returns:
- the value of the
added
record component
-