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 SummaryNested classes/interfaces inherited from interface net.minecraft.world.item.enchantment.LevelBasedValueLevelBasedValue.Clamped, LevelBasedValue.Constant, LevelBasedValue.Fraction, LevelBasedValue.LevelsSquared, LevelBasedValue.Linear, LevelBasedValue.Lookup
- 
Field SummaryFieldsModifier 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.LevelBasedValueDISPATCH_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionLinear(float base, float perLevelAboveFirst) Creates an instance of aLinearrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfloatbase()Returns the value of thebaserecord component.floatcalculate(int p_343508_) 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- 
baseprivate final float baseThe field for thebaserecord component.
- 
perLevelAboveFirstprivate final float perLevelAboveFirstThe field for theperLevelAboveFirstrecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
Linearpublic Linear(float base, float perLevelAboveFirst) Creates an instance of aLinearrecord class.- Parameters:
- base- the value for the- baserecord component
- perLevelAboveFirst- the value for the- perLevelAboveFirstrecord component
 
 
- 
- 
Method Details- 
calculatepublic float calculate(int p_343508_) - Specified by:
- calculatein interface- LevelBasedValue
 
- 
codec- Specified by:
- codecin interface- LevelBasedValue
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
basepublic float base()Returns the value of thebaserecord component.- Returns:
- the value of the baserecord component
 
- 
perLevelAboveFirstpublic float perLevelAboveFirst()Returns the value of theperLevelAboveFirstrecord component.- Returns:
- the value of the perLevelAboveFirstrecord component
 
 
-