Record Class OptionInstance.AltEnum<T>

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

public static record OptionInstance.AltEnum<T>(List<T> values, List<T> altValues, BooleanSupplier altCondition, OptionInstance.CycleableValueSet.ValueSetter<T> valueSetter, com.mojang.serialization.Codec<T> codec) extends Record implements OptionInstance.CycleableValueSet<T>
  • Field Details

    • values

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

      private final List<T> altValues
      The field for the altValues record component.
    • altCondition

      private final BooleanSupplier altCondition
      The field for the altCondition record component.
    • valueSetter

      private final OptionInstance.CycleableValueSet.ValueSetter<T> valueSetter
      The field for the valueSetter record component.
    • codec

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

    • AltEnum

      public AltEnum(List<T> values, List<T> altValues, BooleanSupplier altCondition, OptionInstance.CycleableValueSet.ValueSetter<T> valueSetter, com.mojang.serialization.Codec<T> codec)
      Creates an instance of a AltEnum record class.
      Parameters:
      values - the value for the values record component
      altValues - the value for the altValues record component
      altCondition - the value for the altCondition record component
      valueSetter - the value for the valueSetter record component
      codec - the value for the codec record component
  • Method Details

    • valueListSupplier

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

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

      Returns the value of the valueSetter record component.
      Specified by:
      valueSetter in interface OptionInstance.CycleableValueSet<T>
      Returns:
      the value of the valueSetter record component
    • 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 List<T> values()
      Returns the value of the values record component.
      Returns:
      the value of the values record component
    • altValues

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

      public BooleanSupplier altCondition()
      Returns the value of the altCondition record component.
      Returns:
      the value of the altCondition record component