Package net.minecraft.client.option
Record Class SimpleOption.MaxSuppliableIntCallbacks
java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.MaxSuppliableIntCallbacks
- Record Components:
minInclusive
-maxSupplier
-encodableMaxInclusive
-
- All Implemented Interfaces:
SimpleOption.Callbacks<Integer>
,SimpleOption.CyclingCallbacks<Integer>
,SimpleOption.IntSliderCallbacks
,SimpleOption.SliderCallbacks<Integer>
,SimpleOption.TypeChangeableCallbacks<Integer>
- Enclosing class:
SimpleOption<T>
@Environment(CLIENT)
public static record SimpleOption.MaxSuppliableIntCallbacks(int minInclusive, IntSupplier maxSupplier, int encodableMaxInclusive)
extends Record
implements SimpleOption.IntSliderCallbacks, SimpleOption.TypeChangeableCallbacks<Integer>
A set of callbacks for a cycling option with a fixed minimum value and a dynamic
maximum value. This clamps the value during validation.
- See Also:
- Mappings:
Namespace Name official enq$c
intermediary net/minecraft/class_7172$class_7304
named net/minecraft/client/option/SimpleOption$MaxSuppliableIntCallbacks
official a
intermediary comp_593
named minInclusive
official b
intermediary comp_690
named maxSupplier
official c
intermediary comp_1316
named encodableMaxInclusive
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.option.SimpleOption.CyclingCallbacks
SimpleOption.CyclingCallbacks.ValueSetter<T>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final int
The field for theencodableMaxInclusive
record component.private final IntSupplier
The field for themaxSupplier
record component.private final int
The field for theminInclusive
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<Integer>
codec()
int
Returns the value of theencodableMaxInclusive
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
int
Returns the value of themaxSupplier
record component.int
final String
toString()
Returns a string representation of this record class.Returns the validated value.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.client.option.SimpleOption.CyclingCallbacks
valueSetter
Methods inherited from interface net.minecraft.client.option.SimpleOption.IntSliderCallbacks
toSliderProgress, toValue, withModifier
Methods inherited from interface net.minecraft.client.option.SimpleOption.SliderCallbacks
getWidgetCreator
Methods inherited from interface net.minecraft.client.option.SimpleOption.TypeChangeableCallbacks
getWidgetCreator
-
Field Details
-
minInclusive
private final int minInclusiveThe field for theminInclusive
record component. -
maxSupplier
The field for themaxSupplier
record component. -
encodableMaxInclusive
private final int encodableMaxInclusiveThe field for theencodableMaxInclusive
record component.
-
-
Constructor Details
-
MaxSuppliableIntCallbacks
-
-
Method Details
-
validate
Description copied from interface:SimpleOption.Callbacks
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 interfaceSimpleOption.Callbacks<Integer>
- Returns:
- the validated value
- Mappings:
Namespace Name Mixin selector official a
Lenq$c;a(Ljava/lang/Integer;)Ljava/util/Optional;
intermediary method_42408
Lnet/minecraft/class_7172$class_7304;method_42408(Ljava/lang/Integer;)Ljava/util/Optional;
named validate
Lnet/minecraft/client/option/SimpleOption$MaxSuppliableIntCallbacks;validate(Ljava/lang/Integer;)Ljava/util/Optional;
-
maxInclusive
public int maxInclusive()- Specified by:
maxInclusive
in interfaceSimpleOption.IntSliderCallbacks
- Mappings:
Namespace Name Mixin selector official b
Lenq$g;b()I
intermediary comp_594
Lnet/minecraft/class_7172$class_7275;comp_594()I
named maxInclusive
Lnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;maxInclusive()I
-
codec
- Specified by:
codec
in interfaceSimpleOption.Callbacks<Integer>
- Mappings:
Namespace Name Mixin selector official f
Lenq$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;
-
isCycling
public boolean isCycling()- Specified by:
isCycling
in interfaceSimpleOption.TypeChangeableCallbacks<Integer>
- Mappings:
Namespace Name Mixin selector official c
Lenq$j;c()Z
intermediary method_42722
Lnet/minecraft/class_7172$class_7306;method_42722()Z
named isCycling
Lnet/minecraft/client/option/SimpleOption$TypeChangeableCallbacks;isCycling()Z
-
getValues
- Specified by:
getValues
in interfaceSimpleOption.CyclingCallbacks<Integer>
- Mappings:
Namespace Name Mixin selector official a
Lenq$d;a()Lepp$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
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. -
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. -
equals
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
minInclusive
public int minInclusive()- Specified by:
minInclusive
in interfaceSimpleOption.IntSliderCallbacks
- Mappings:
Namespace Name Mixin selector official d
Lenq$g;d()I
intermediary comp_593
Lnet/minecraft/class_7172$class_7275;comp_593()I
named minInclusive
Lnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;minInclusive()I
-
maxSupplier
Returns the value of themaxSupplier
record component.- Returns:
- the value of the
maxSupplier
record component
-
encodableMaxInclusive
public int encodableMaxInclusive()Returns the value of theencodableMaxInclusive
record component.- Returns:
- the value of the
encodableMaxInclusive
record component
-