Record Class LevelBasedValue.LevelsSquared
java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.LevelBasedValue.LevelsSquared
- All Implemented Interfaces:
LevelBasedValue
- Enclosing interface:
LevelBasedValue
public static record LevelBasedValue.LevelsSquared(float added)
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 theaddedrecord component.static final com.mojang.serialization.MapCodec<LevelBasedValue.LevelsSquared> Fields inherited from interface net.minecraft.world.item.enchantment.LevelBasedValue
DISPATCH_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionLevelsSquared(float added) Creates an instance of aLevelsSquaredrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatadded()Returns the value of theaddedrecord component.floatcalculate(int p_344759_) com.mojang.serialization.MapCodec<LevelBasedValue.LevelsSquared> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
added
private final float addedThe field for theaddedrecord component. -
CODEC
-
-
Constructor Details
-
LevelsSquared
public LevelsSquared(float added) Creates an instance of aLevelsSquaredrecord class.- Parameters:
added- the value for theaddedrecord component
-
-
Method Details
-
calculate
public float calculate(int p_344759_) - 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 '=='. -
added
public float added()Returns the value of theaddedrecord component.- Returns:
- the value of the
addedrecord component
-