Package net.minecraft.client.option
Record Class SimpleOption.ValidatingIntSliderCallbacks
java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.ValidatingIntSliderCallbacks
- Record Components:
- minInclusive-
- maxInclusive-
- applyValueImmediately-
- 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, boolean applyValueImmediately)
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 - named - net/minecraft/client/option/SimpleOption$ValidatingIntSliderCallbacks- intermediary - net/minecraft/class_7172$class_7174- official - fln$f- named - minInclusive- intermediary - comp_593- official - a- named - maxInclusive- intermediary - comp_594- official - b- named - applyValueImmediately- intermediary - comp_2661- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theapplyValueImmediatelyrecord component.private final intThe field for themaxInclusiverecord component.private final intThe field for theminInclusiverecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionValidatingIntSliderCallbacks(int minInclusive, int maxInclusive) ValidatingIntSliderCallbacks(int int2, int int3, boolean bool) 
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns the value of theapplyValueImmediatelyrecord component.com.mojang.serialization.Codec<Integer> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of themaxInclusiverecord component.intReturns the value of theminInclusiverecord component.final StringtoString()Returns a string representation of this record class.Returns the validated value.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.client.option.SimpleOption.IntSliderCallbackstoSliderProgress, toValue, withModifierMethods inherited from interface net.minecraft.client.option.SimpleOption.SliderCallbacksgetWidgetCreator
- 
Field Details- 
minInclusiveprivate final int minInclusiveThe field for theminInclusiverecord component.
- 
maxInclusiveprivate final int maxInclusiveThe field for themaxInclusiverecord component.
- 
applyValueImmediatelyprivate final boolean applyValueImmediatelyThe field for theapplyValueImmediatelyrecord component.
 
- 
- 
Constructor Details- 
ValidatingIntSliderCallbackspublic ValidatingIntSliderCallbacks(int minInclusive, int maxInclusive) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/client/option/SimpleOption$ValidatingIntSliderCallbacks;<init>(II)V- intermediary - <init>- Lnet/minecraft/class_7172$class_7174;<init>(II)V- official - <init>- Lfln$f;<init>(II)V
 
- 
ValidatingIntSliderCallbackspublic ValidatingIntSliderCallbacks(int int2, int int3, boolean bool) 
 
- 
- 
Method Details- 
validateDescription copied from interface:SimpleOption.CallbacksReturns 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<Integer>
- Returns:
- the validated value
- Mappings:
- Namespace - Name - Mixin selector - named - validate- Lnet/minecraft/client/option/SimpleOption$ValidatingIntSliderCallbacks;validate(Ljava/lang/Integer;)Ljava/util/Optional;- intermediary - method_41761- Lnet/minecraft/class_7172$class_7174;method_41761(Ljava/lang/Integer;)Ljava/util/Optional;- official - a- Lfln$f;a(Ljava/lang/Integer;)Ljava/util/Optional;
 
- 
codec- Specified by:
- codecin interface- SimpleOption.Callbacks<Integer>
- Mappings:
- Namespace - Name - Mixin selector - named - codec- Lnet/minecraft/client/option/SimpleOption$Callbacks;codec()Lcom/mojang/serialization/Codec;- intermediary - comp_675- Lnet/minecraft/class_7172$class_7178;comp_675()Lcom/mojang/serialization/Codec;- official - f- Lfln$n;f()Lcom/mojang/serialization/Codec;
 
- 
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 with '=='.
- 
minInclusivepublic int minInclusive()Returns the value of theminInclusiverecord component.- Specified by:
- minInclusivein interface- SimpleOption.IntSliderCallbacks
- Returns:
- the value of the minInclusiverecord component
 
- 
maxInclusivepublic int maxInclusive()Returns the value of themaxInclusiverecord component.- Specified by:
- maxInclusivein interface- SimpleOption.IntSliderCallbacks
- Returns:
- the value of the maxInclusiverecord component
 
- 
applyValueImmediatelypublic boolean applyValueImmediately()Returns the value of theapplyValueImmediatelyrecord component.- Specified by:
- applyValueImmediatelyin interface- SimpleOption.SliderCallbacks<Integer>
- Returns:
- the value of the applyValueImmediatelyrecord component
 
 
-