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 named net/minecraft/client/option/SimpleOption$MaxSuppliableIntCallbacks
intermediary net/minecraft/class_7172$class_7304
official ffk$c
named minInclusive
intermediary comp_593
official a
named maxSupplier
intermediary comp_690
official b
named encodableMaxInclusive
intermediary comp_1316
official c
-
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
Returns the value of theminInclusive
record component.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
applyValueImmediately, 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 named validate
Lnet/minecraft/client/option/SimpleOption$MaxSuppliableIntCallbacks;validate(Ljava/lang/Integer;)Ljava/util/Optional;
intermediary method_42408
Lnet/minecraft/class_7172$class_7304;method_42408(Ljava/lang/Integer;)Ljava/util/Optional;
official a
Lffk$c;a(Ljava/lang/Integer;)Ljava/util/Optional;
-
maxInclusive
public int maxInclusive()- Specified by:
maxInclusive
in interfaceSimpleOption.IntSliderCallbacks
- Mappings:
Namespace Name Mixin selector named maxInclusive
Lnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;maxInclusive()I
intermediary comp_594
Lnet/minecraft/class_7172$class_7275;comp_594()I
official b
Lffk$g;b()I
-
codec
- Specified by:
codec
in interfaceSimpleOption.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
Lffk$n;f()Lcom/mojang/serialization/Codec;
-
isCycling
public boolean isCycling()- Specified by:
isCycling
in interfaceSimpleOption.TypeChangeableCallbacks<Integer>
- Mappings:
Namespace Name Mixin selector named isCycling
Lnet/minecraft/client/option/SimpleOption$TypeChangeableCallbacks;isCycling()Z
intermediary method_42722
Lnet/minecraft/class_7172$class_7306;method_42722()Z
official c
Lffk$j;c()Z
-
getValues
- Specified by:
getValues
in interfaceSimpleOption.CyclingCallbacks<Integer>
- 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
Lffk$d;a()Lfhn$c;
-
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()Returns the value of theminInclusive
record component.- Specified by:
minInclusive
in interfaceSimpleOption.IntSliderCallbacks
- Returns:
- the value of the
minInclusive
record component
-
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
-