Package net.minecraft.enchantment
Record Class EnchantmentLevelBasedValue.Linear
java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValue.Linear
- Record Components:
base
-perLevelAboveFirst
-
- All Implemented Interfaces:
EnchantmentLevelBasedValue
- Enclosing interface:
EnchantmentLevelBasedValue
public static record EnchantmentLevelBasedValue.Linear(float base, float perLevelAboveFirst)
extends Record
implements EnchantmentLevelBasedValue
- Mappings:
Namespace Name named net/minecraft/enchantment/EnchantmentLevelBasedValue$Linear
intermediary net/minecraft/class_9704$class_9709
official daj$e
named base
intermediary comp_2698
official d
named perLevelAboveFirst
intermediary comp_2699
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 TypeFieldDescriptionprivate final float
The field for thebase
record component.static final com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValue.Linear> private final float
The field for theperLevelAboveFirst
record component.Fields inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValue
BASE_CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfloat
base()
Returns the value of thebase
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<EnchantmentLevelBasedValue.Linear> getCodec()
float
getValue
(int level) final int
hashCode()
Returns a hash code value for this object.float
Returns the value of theperLevelAboveFirst
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
base
private final float baseThe field for thebase
record component. -
perLevelAboveFirst
private final float perLevelAboveFirstThe field for theperLevelAboveFirst
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/EnchantmentLevelBasedValue$Linear;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51696
Lnet/minecraft/class_9704$class_9709;field_51696:Lcom/mojang/serialization/MapCodec;
official c
Ldaj$e;c:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
Linear
public Linear(float float2, float float3)
-
-
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 '=='. -
base
public float base()Returns the value of thebase
record component.- Returns:
- the value of the
base
record component
-
perLevelAboveFirst
public float perLevelAboveFirst()Returns the value of theperLevelAboveFirst
record component.- Returns:
- the value of the
perLevelAboveFirst
record component
-