Package net.minecraft.enchantment
Record Class EnchantmentLevelBasedValue.Constant
java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValue.Constant
- Record Components:
value
-
- All Implemented Interfaces:
EnchantmentLevelBasedValue
- Enclosing interface:
EnchantmentLevelBasedValue
public static record EnchantmentLevelBasedValue.Constant(float value)
extends Record
implements EnchantmentLevelBasedValue
- Mappings:
Namespace Name named net/minecraft/enchantment/EnchantmentLevelBasedValue$Constant
intermediary net/minecraft/class_9704$class_9706
official daj$b
named value
intermediary comp_2694
official e
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValue
EnchantmentLevelBasedValue.Clamped, EnchantmentLevelBasedValue.Constant, EnchantmentLevelBasedValue.Fraction, EnchantmentLevelBasedValue.LevelsSquared, EnchantmentLevelBasedValue.Linear, EnchantmentLevelBasedValue.Lookup
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<EnchantmentLevelBasedValue.Constant> static final com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValue.Constant> private final float
The field for thevalue
record component.Fields inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValue
BASE_CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValue.Constant> 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.float
value()
Returns the value of thevalue
record component.
-
Field Details
-
value
private final float valueThe field for thevalue
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/EnchantmentLevelBasedValue$Constant;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_51692
Lnet/minecraft/class_9704$class_9706;field_51692:Lcom/mojang/serialization/Codec;
official c
Ldaj$b;c:Lcom/mojang/serialization/Codec;
-
TYPE_CODEC
public static final com.mojang.serialization.MapCodec<EnchantmentLevelBasedValue.Constant> TYPE_CODEC- Mappings:
Namespace Name Mixin selector named TYPE_CODEC
Lnet/minecraft/enchantment/EnchantmentLevelBasedValue$Constant;TYPE_CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51693
Lnet/minecraft/class_9704$class_9706;field_51693:Lcom/mojang/serialization/MapCodec;
official d
Ldaj$b;d:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
Constant
public Constant(float float2)
-
-
Method Details
-
getValue
public float getValue(int level) - Specified by:
getValue
in interfaceEnchantmentLevelBasedValue
- Mappings:
Namespace Name Mixin selector named getValue
Lnet/minecraft/enchantment/EnchantmentLevelBasedValue;getValue(I)F
intermediary method_60188
Lnet/minecraft/class_9704;method_60188(I)F
official a
Ldaj;a(I)F
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentLevelBasedValue
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/enchantment/EnchantmentLevelBasedValue;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_60185
Lnet/minecraft/class_9704;method_60185()Lcom/mojang/serialization/MapCodec;
official a
Ldaj;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 '=='. -
value
public float value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-