Record Class OptionInstance.LazyEnum<T>

java.lang.Object
java.lang.Record
net.minecraft.client.OptionInstance.LazyEnum<T>
All Implemented Interfaces:
OptionInstance.CycleableValueSet<T>, OptionInstance.ValueSet<T>
Enclosing class:
OptionInstance<T>

public static record OptionInstance.LazyEnum<T>(Supplier<List<T>> values, Function<T,Optional<T>> validateValue, com.mojang.serialization.Codec<T> codec) extends Record implements OptionInstance.CycleableValueSet<T>
  • Field Details

    • values

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

      private final Function<T,Optional<T>> validateValue
      The field for the validateValue record component.
    • codec

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

    • LazyEnum

      public LazyEnum(Supplier<List<T>> values, Function<T,Optional<T>> validateValue, com.mojang.serialization.Codec<T> codec)
      Creates an instance of a LazyEnum record class.
      Parameters:
      values - the value for the values record component
      validateValue - the value for the validateValue record component
      codec - the value for the codec record component
  • Method Details

    • validateValue

      public Optional<T> validateValue(T p_231689_)
      Specified by:
      validateValue in interface OptionInstance.ValueSet<T>
    • valueListSupplier

      public CycleButton.ValueListSupplier<T> valueListSupplier()
      Specified by:
      valueListSupplier in interface OptionInstance.CycleableValueSet<T>
    • codec

      public com.mojang.serialization.Codec<T> codec()
      Returns the value of the codec record component.
      Specified by:
      codec in interface OptionInstance.ValueSet<T>
      Returns:
      the value of the codec record component
    • 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 o)
      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:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • values

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

      public Function<T,Optional<T>> validateValue()
      Returns the value of the validateValue record component.
      Returns:
      the value of the validateValue record component