Package net.minecraft.enchantment
Record Class EnchantmentLevelBasedValue.Fraction
java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValue.Fraction
- Record Components:
- numerator-
- denominator-
- All Implemented Interfaces:
- EnchantmentLevelBasedValue
- Enclosing interface:
- EnchantmentLevelBasedValue
public static record EnchantmentLevelBasedValue.Fraction(EnchantmentLevelBasedValue numerator, EnchantmentLevelBasedValue denominator)
extends Record
implements EnchantmentLevelBasedValue
- Mappings:
- Namespace - Name - named - net/minecraft/enchantment/EnchantmentLevelBasedValue$Fraction- intermediary - net/minecraft/class_9704$class_9707- official - ddh$c- named - numerator- intermediary - comp_2695- official - d- named - denominator- intermediary - comp_2696- official - e
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValueEnchantmentLevelBasedValue.Clamped, EnchantmentLevelBasedValue.Constant, EnchantmentLevelBasedValue.Fraction, EnchantmentLevelBasedValue.LevelsSquared, EnchantmentLevelBasedValue.Linear, EnchantmentLevelBasedValue.Lookup
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<EnchantmentLevelBasedValue.Fraction> private final EnchantmentLevelBasedValueThe field for thedenominatorrecord component.private final EnchantmentLevelBasedValueThe field for thenumeratorrecord component.Fields inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValueBASE_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionFraction(EnchantmentLevelBasedValue enchantmentLevelBasedValue, EnchantmentLevelBasedValue enchantmentLevelBasedValue2) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedenominatorrecord component.final booleanIndicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec<EnchantmentLevelBasedValue.Fraction> getCodec()floatgetValue(int level) final inthashCode()Returns a hash code value for this object.Returns the value of thenumeratorrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
numeratorThe field for thenumeratorrecord component.
- 
denominatorThe field for thedenominatorrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/enchantment/EnchantmentLevelBasedValue$Fraction;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_51694- Lnet/minecraft/class_9704$class_9707;field_51694:Lcom/mojang/serialization/MapCodec;- official - c- Lddh$c;c:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
Fractionpublic Fraction(EnchantmentLevelBasedValue enchantmentLevelBasedValue, EnchantmentLevelBasedValue enchantmentLevelBasedValue2) 
 
- 
- 
Method Details- 
getValuepublic float getValue(int level) - Specified by:
- getValuein interface- EnchantmentLevelBasedValue
- 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- Lddh;a(I)F
 
- 
getCodec- Specified by:
- getCodecin interface- EnchantmentLevelBasedValue
- 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- Lddh;a()Lcom/mojang/serialization/MapCodec;
 
- 
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 withObjects::equals(Object,Object).
- 
numeratorReturns the value of thenumeratorrecord component.- Returns:
- the value of the numeratorrecord component
 
- 
denominatorReturns the value of thedenominatorrecord component.- Returns:
- the value of the denominatorrecord component
 
 
-