Package net.minecraft.enchantment
Record Class EnchantmentLevelBasedValue.Lookup
java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValue.Lookup
- Record Components:
- values-
- fallback-
- All Implemented Interfaces:
- EnchantmentLevelBasedValue
- Enclosing interface:
- EnchantmentLevelBasedValue
public static record EnchantmentLevelBasedValue.Lookup(List<Float> values, EnchantmentLevelBasedValue fallback)
extends Record
implements EnchantmentLevelBasedValue
- Mappings:
- Namespace - Name - named - net/minecraft/enchantment/EnchantmentLevelBasedValue$Lookup- intermediary - net/minecraft/class_9704$class_9819- official - ddh$f- named - values- intermediary - comp_2862- official - d- named - fallback- intermediary - comp_2863- 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.Lookup> private final EnchantmentLevelBasedValueThe field for thefallbackrecord component.The field for thevaluesrecord component.Fields inherited from interface net.minecraft.enchantment.EnchantmentLevelBasedValueBASE_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionLookup(List<Float> list, EnchantmentLevelBasedValue enchantmentLevelBasedValue) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fallback()Returns the value of thefallbackrecord component.com.mojang.serialization.MapCodec<EnchantmentLevelBasedValue.Lookup> getCodec()floatgetValue(int level) final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.values()Returns the value of thevaluesrecord component.
- 
Field Details- 
valuesThe field for thevaluesrecord component.
- 
fallbackThe field for thefallbackrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/enchantment/EnchantmentLevelBasedValue$Lookup;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_52226- Lnet/minecraft/class_9704$class_9819;field_52226:Lcom/mojang/serialization/MapCodec;- official - c- Lddh$f;c:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
Lookup
 
- 
- 
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).
- 
valuesReturns the value of thevaluesrecord component.- Returns:
- the value of the valuesrecord component
 
- 
fallbackReturns the value of thefallbackrecord component.- Returns:
- the value of the fallbackrecord component
 
 
-