Record Class SimpleOption.PotentialValuesBasedCallbacks<T>

java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.PotentialValuesBasedCallbacks<T>
Record Components:
values -
codec -
All Implemented Interfaces:
SimpleOption.Callbacks<T>, SimpleOption.CyclingCallbacks<T>
Enclosing class:
SimpleOption<T>

@Environment(CLIENT) public static record SimpleOption.PotentialValuesBasedCallbacks<T>(List<T> values, com.mojang.serialization.Codec<T> codec) extends Record implements SimpleOption.CyclingCallbacks<T>
A set of callbacks for a cycling option.
See Also:
Mappings:
Namespace Name
official eji$e
intermediary net/minecraft/class_7172$class_7173
named net/minecraft/client/option/SimpleOption$PotentialValuesBasedCallbacks
official a
intermediary comp_592
named values
official b
intermediary comp_675
named codec
  • Field Details

    • values

      private final List<T> values
      The field for the values record component.
    • codec

      private final com.mojang.serialization.Codec<T> codec
      The field for the codec record component.
  • Constructor Details

    • PotentialValuesBasedCallbacks

      public PotentialValuesBasedCallbacks(List<T> list, com.mojang.serialization.Codec<T> codec)
  • Method Details

    • validate

      public Optional<T> validate(T value)
      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<T>
      Returns:
      the validated value
      Mappings:
      Namespace Name Mixin selector
      official a Leji$n;a(Ljava/lang/Object;)Ljava/util/Optional;
      intermediary method_41758 Lnet/minecraft/class_7172$class_7178;method_41758(Ljava/lang/Object;)Ljava/util/Optional;
      named validate Lnet/minecraft/client/option/SimpleOption$Callbacks;validate(Ljava/lang/Object;)Ljava/util/Optional;
    • getValues

      public CyclingButtonWidget.Values<T> getValues()
      Specified by:
      getValues in interface SimpleOption.CyclingCallbacks<T>
      Mappings:
      Namespace Name Mixin selector
      official a Leji$d;a()Lelf$c;
      intermediary method_42721 Lnet/minecraft/class_7172$class_7305;method_42721()Lnet/minecraft/class_5676$class_5680;
      named getValues Lnet/minecraft/client/option/SimpleOption$CyclingCallbacks;getValues()Lnet/minecraft/client/gui/widget/CyclingButtonWidget$Values;
    • 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 Objects::equals(Object,Object).
      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.
    • values

      public List<T> values()
      Returns the value of the values record component.
      Returns:
      the value of the values record component
    • codec

      public com.mojang.serialization.Codec<T> codec()
      Specified by:
      codec in interface SimpleOption.Callbacks<T>
      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;