Record Class EnchantmentLevelBasedValueType.Clamped

java.lang.Object
java.lang.Record
net.minecraft.enchantment.EnchantmentLevelBasedValueType.Clamped
Record Components:
value -
min -
max -
All Implemented Interfaces:
EnchantmentLevelBasedValueType
Enclosing interface:
EnchantmentLevelBasedValueType

public static record EnchantmentLevelBasedValueType.Clamped(EnchantmentLevelBasedValueType value, float min, float max) extends Record implements EnchantmentLevelBasedValueType
Mappings:
Namespace Name
named net/minecraft/enchantment/EnchantmentLevelBasedValueType$Clamped
intermediary net/minecraft/class_9704$class_9705
official czt$a
named value
intermediary comp_2691
official d
named min
intermediary comp_2692
official e
named max
intermediary comp_2693
official f
  • Field Details

    • value

      private final EnchantmentLevelBasedValueType value
      The field for the value record component.
    • min

      private final float min
      The field for the min record component.
    • max

      private final float max
      The field for the max record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<EnchantmentLevelBasedValueType.Clamped> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType$Clamped;CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_51691 Lnet/minecraft/class_9704$class_9705;field_51691:Lcom/mojang/serialization/MapCodec;
      official c Lczt$a;c:Lcom/mojang/serialization/MapCodec;
  • Constructor Details

  • Method Details

    • getValue

      public float getValue(int level)
      Specified by:
      getValue in interface EnchantmentLevelBasedValueType
      Mappings:
      Namespace Name Mixin selector
      named getValue Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType;getValue(I)F
      intermediary method_60188 Lnet/minecraft/class_9704;method_60188(I)F
      official a Lczt;a(I)F
    • getCodec

      public com.mojang.serialization.MapCodec<EnchantmentLevelBasedValueType.Clamped> getCodec()
      Specified by:
      getCodec in interface EnchantmentLevelBasedValueType
      Mappings:
      Namespace Name Mixin selector
      named getCodec Lnet/minecraft/enchantment/EnchantmentLevelBasedValueType;getCodec()Lcom/mojang/serialization/MapCodec;
      intermediary method_60185 Lnet/minecraft/class_9704;method_60185()Lcom/mojang/serialization/MapCodec;
      official a Lczt;a()Lcom/mojang/serialization/MapCodec;
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • value

      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • min

      public float min()
      Returns the value of the min record component.
      Returns:
      the value of the min record component
    • max

      public float max()
      Returns the value of the max record component.
      Returns:
      the value of the max record component