Record Class LevelBasedValue.Linear
java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.LevelBasedValue.Linear
- All Implemented Interfaces:
LevelBasedValue
- Enclosing interface:
LevelBasedValue
public static record LevelBasedValue.Linear(float base, float perLevelAboveFirst)
extends Record
implements LevelBasedValue
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.item.enchantment.LevelBasedValue
LevelBasedValue.Clamped, LevelBasedValue.Constant, LevelBasedValue.Fraction, LevelBasedValue.LevelsSquared, LevelBasedValue.Linear, LevelBasedValue.Lookup -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final floatThe field for thebaserecord component.static final com.mojang.serialization.MapCodec<LevelBasedValue.Linear> private final floatThe field for theperLevelAboveFirstrecord component.Fields inherited from interface net.minecraft.world.item.enchantment.LevelBasedValue
DISPATCH_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionLinear(float base, float perLevelAboveFirst) Creates an instance of aLinearrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatbase()Returns the value of thebaserecord component.floatcalculate(int p_345943_) com.mojang.serialization.MapCodec<LevelBasedValue.Linear> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatReturns the value of theperLevelAboveFirstrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
base
private final float baseThe field for thebaserecord component. -
perLevelAboveFirst
private final float perLevelAboveFirstThe field for theperLevelAboveFirstrecord component. -
CODEC
-
-
Constructor Details
-
Linear
public Linear(float base, float perLevelAboveFirst) Creates an instance of aLinearrecord class.- Parameters:
base- the value for thebaserecord componentperLevelAboveFirst- the value for theperLevelAboveFirstrecord component
-
-
Method Details
-
calculate
public float calculate(int p_345943_) - Specified by:
calculatein interfaceLevelBasedValue
-
codec
- Specified by:
codecin interfaceLevelBasedValue
-
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 thebaserecord component.- Returns:
- the value of the
baserecord component
-
perLevelAboveFirst
public float perLevelAboveFirst()Returns the value of theperLevelAboveFirstrecord component.- Returns:
- the value of the
perLevelAboveFirstrecord component
-