Record Class SimpleOption.ValidatingIntSliderCallbacks

java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.ValidatingIntSliderCallbacks
Record Components:
minInclusive -
maxInclusive -
All Implemented Interfaces:
SimpleOption.Callbacks<Integer>, SimpleOption.IntSliderCallbacks, SimpleOption.SliderCallbacks<Integer>
Enclosing class:
SimpleOption<T>

@Environment(CLIENT) public static record SimpleOption.ValidatingIntSliderCallbacks(int minInclusive, int maxInclusive) extends Record implements SimpleOption.IntSliderCallbacks
A set of callbacks for a slider of integer values with a fixed minimum and maximum values.
See Also:
Mappings:
Namespace Name
official eji$f
intermediary net/minecraft/class_7172$class_7174
named net/minecraft/client/option/SimpleOption$ValidatingIntSliderCallbacks
official a
intermediary comp_593
named minInclusive
official b
intermediary comp_594
named maxInclusive
  • Field Details

    • minInclusive

      private final int minInclusive
      The field for the minInclusive record component.
    • maxInclusive

      private final int maxInclusive
      The field for the maxInclusive record component.
  • Constructor Details

    • ValidatingIntSliderCallbacks

      public ValidatingIntSliderCallbacks(int int2, int int3)
  • Method Details

    • validate

      public Optional<Integer> validate(Integer integer)
      Description copied from interface: SimpleOption.Callbacks
      Returns the validated value.

      Returning Optional.empty() indicates the passed value is invalid and it should reset to the default value. This method can also coerce the invalid value into a valid one by clamping, etc.

      Specified by:
      validate in interface SimpleOption.Callbacks<Integer>
      Returns:
      the validated value
      Mappings:
      Namespace Name Mixin selector
      official a Leji$f;a(Ljava/lang/Integer;)Ljava/util/Optional;
      intermediary method_41761 Lnet/minecraft/class_7172$class_7174;method_41761(Ljava/lang/Integer;)Ljava/util/Optional;
      named validate Lnet/minecraft/client/option/SimpleOption$ValidatingIntSliderCallbacks;validate(Ljava/lang/Integer;)Ljava/util/Optional;
    • codec

      public com.mojang.serialization.Codec<Integer> codec()
      Specified by:
      codec in interface SimpleOption.Callbacks<Integer>
      Mappings:
      Namespace Name Mixin selector
      official f Leji$n;f()Lcom/mojang/serialization/Codec;
      intermediary comp_675 Lnet/minecraft/class_7172$class_7178;comp_675()Lcom/mojang/serialization/Codec;
      named codec Lnet/minecraft/client/option/SimpleOption$Callbacks;codec()Lcom/mojang/serialization/Codec;
    • 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. All components in this record class 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.
    • minInclusive

      public int minInclusive()
      Specified by:
      minInclusive in interface SimpleOption.IntSliderCallbacks
      Mappings:
      Namespace Name Mixin selector
      official d Leji$g;d()I
      intermediary comp_593 Lnet/minecraft/class_7172$class_7275;comp_593()I
      named minInclusive Lnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;minInclusive()I
    • maxInclusive

      public int maxInclusive()
      Specified by:
      maxInclusive in interface SimpleOption.IntSliderCallbacks
      Mappings:
      Namespace Name Mixin selector
      official b Leji$g;b()I
      intermediary comp_594 Lnet/minecraft/class_7172$class_7275;comp_594()I
      named maxInclusive Lnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;maxInclusive()I