Package net.minecraft.client.option
Record Class SimpleOption.AlternateValuesSupportingCyclingCallbacks<T>
java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.AlternateValuesSupportingCyclingCallbacks<T>
- Record Components:
- values-
- altValues-
- altCondition-
- valueSetter-
- codec-
- All Implemented Interfaces:
- SimpleOption.Callbacks<T>,- SimpleOption.CyclingCallbacks<T>
- Enclosing class:
- SimpleOption<T>
@Environment(CLIENT)
public static record SimpleOption.AlternateValuesSupportingCyclingCallbacks<T>(List<T> values, List<T> altValues, BooleanSupplier altCondition, SimpleOption.CyclingCallbacks.ValueSetter<T> valueSetter, com.mojang.serialization.Codec<T> codec)
extends Record
implements SimpleOption.CyclingCallbacks<T>
A set of callbacks for a cycling option with alternate potential values that are used
 only when certain conditions are met.
- See Also:
- Mappings:
- Namespace - Name - named - net/minecraft/client/option/SimpleOption$AlternateValuesSupportingCyclingCallbacks- intermediary - net/minecraft/class_7172$class_7273- official - fln$a- named - values- intermediary - comp_671- official - a- named - altValues- intermediary - comp_672- official - b- named - altCondition- intermediary - comp_673- official - c- named - valueSetter- intermediary - comp_674- official - d- named - codec- intermediary - comp_675- official - e
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.client.option.SimpleOption.CyclingCallbacksSimpleOption.CyclingCallbacks.ValueSetter<T>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final BooleanSupplierThe field for thealtConditionrecord component.The field for thealtValuesrecord component.private final com.mojang.serialization.Codec<T> The field for thecodecrecord component.The field for thevaluesrecord component.private final SimpleOption.CyclingCallbacks.ValueSetter<T> The field for thevalueSetterrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionAlternateValuesSupportingCyclingCallbacks(List<T> list, List<T> list2, BooleanSupplier booleanSupplier, SimpleOption.CyclingCallbacks.ValueSetter<T> valueSetter, com.mojang.serialization.Codec<T> codec) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thealtConditionrecord component.Returns the value of thealtValuesrecord component.com.mojang.serialization.Codec<T> codec()Returns the value of thecodecrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the validated value.values()Returns the value of thevaluesrecord component.Returns the value of thevalueSetterrecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.client.option.SimpleOption.CyclingCallbacksgetWidgetCreator
- 
Field Details- 
valuesThe field for thevaluesrecord component.
- 
altValuesThe field for thealtValuesrecord component.
- 
altConditionThe field for thealtConditionrecord component.
- 
valueSetterThe field for thevalueSetterrecord component.
- 
codecThe field for thecodecrecord component.
 
- 
- 
Constructor Details- 
AlternateValuesSupportingCyclingCallbackspublic AlternateValuesSupportingCyclingCallbacks(List<T> list, List<T> list2, BooleanSupplier booleanSupplier, SimpleOption.CyclingCallbacks.ValueSetter<T> valueSetter, com.mojang.serialization.Codec<T> codec) 
 
- 
- 
Method Details- 
getValues- Specified by:
- getValuesin interface- SimpleOption.CyclingCallbacks<T>
- Mappings:
- Namespace - Name - Mixin selector - named - getValues- Lnet/minecraft/client/option/SimpleOption$CyclingCallbacks;getValues()Lnet/minecraft/client/gui/widget/CyclingButtonWidget$Values;- intermediary - method_42721- Lnet/minecraft/class_7172$class_7305;method_42721()Lnet/minecraft/class_5676$class_5680;- official - a- Lfln$d;a()Lfpb$c;
 
- 
validateReturns 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:
- validatein interface- SimpleOption.Callbacks<T>
- Returns:
- the validated value
- Mappings:
- Namespace - Name - Mixin selector - named - validate- Lnet/minecraft/client/option/SimpleOption$Callbacks;validate(Ljava/lang/Object;)Ljava/util/Optional;- intermediary - method_41758- Lnet/minecraft/class_7172$class_7178;method_41758(Ljava/lang/Object;)Ljava/util/Optional;- official - a- Lfln$n;a(Ljava/lang/Object;)Ljava/util/Optional;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 withObjects::equals(Object,Object).
- 
valuesReturns the value of thevaluesrecord component.- Returns:
- the value of the valuesrecord component
 
- 
altValuesReturns the value of thealtValuesrecord component.- Returns:
- the value of the altValuesrecord component
 
- 
altConditionReturns the value of thealtConditionrecord component.- Returns:
- the value of the altConditionrecord component
 
- 
valueSetterReturns the value of thevalueSetterrecord component.- Specified by:
- valueSetterin interface- SimpleOption.CyclingCallbacks<T>
- Returns:
- the value of the valueSetterrecord component
 
- 
codecReturns the value of thecodecrecord component.- Specified by:
- codecin interface- SimpleOption.Callbacks<T>
- Returns:
- the value of the codecrecord component
 
 
-