Package net.minecraft.client.option
Record Class SimpleOption.IntSliderCallbacks
java.lang.Object
java.lang.Record
net.minecraft.client.option.SimpleOption.IntSliderCallbacks
- Record Components:
minInclusive-maxInclusive-
- All Implemented Interfaces:
SimpleOption.Callbacks<Integer>,SimpleOption.class_7275,SimpleOption.SliderCallbacks<Integer>
- Enclosing class:
SimpleOption<T>
@Environment(CLIENT)
public static record SimpleOption.IntSliderCallbacks(int minInclusive, int maxInclusive)
extends Record
implements SimpleOption.class_7275
- Mappings:
Namespace Name official ebi$dintermediary net/minecraft/class_7172$class_7174named net/minecraft/client/option/SimpleOption$IntSliderCallbacksofficial aintermediary comp_593named minInclusiveofficial bintermediary comp_594named maxInclusive
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for themaxInclusiverecord component.private final intThe field for theminInclusiverecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.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.intintfinal StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.client.option.SimpleOption.class_7275
getButtonCreator, method_42414, toSliderProgress, toValue
-
Field Details
-
minInclusive
private final int minInclusiveThe field for theminInclusiverecord component. -
maxInclusive
private final int maxInclusiveThe field for themaxInclusiverecord component.
-
-
Constructor Details
-
IntSliderCallbacks
public IntSliderCallbacks(int int2, int int3)
-
-
Method Details
-
validate
- Specified by:
validatein interfaceSimpleOption.Callbacks<Integer>- Mappings:
Namespace Name Mixin selector official aLebi$d;a(Ljava/lang/Integer;)Ljava/util/Optional;intermediary method_41761Lnet/minecraft/class_7172$class_7174;method_41761(Ljava/lang/Integer;)Ljava/util/Optional;named validateLnet/minecraft/client/option/SimpleOption$IntSliderCallbacks;validate(Ljava/lang/Integer;)Ljava/util/Optional;
-
codec
- Specified by:
codecin interfaceSimpleOption.Callbacks<Integer>- Mappings:
Namespace Name Mixin selector official cLebi$k;c()Lcom/mojang/serialization/Codec;intermediary comp_675Lnet/minecraft/class_7172$class_7178;comp_675()Lcom/mojang/serialization/Codec;named codecLnet/minecraft/client/option/SimpleOption$Callbacks;codec()Lcom/mojang/serialization/Codec;
-
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. All components in this record class are compared with '=='. -
minInclusive
public int minInclusive()- Specified by:
minInclusivein interfaceSimpleOption.class_7275- Mappings:
Namespace Name Mixin selector official aLebi$e;a()Iintermediary comp_593Lnet/minecraft/class_7172$class_7275;comp_593()Inamed minInclusiveLnet/minecraft/client/option/SimpleOption$class_7275;minInclusive()I
-
maxInclusive
public int maxInclusive()- Specified by:
maxInclusivein interfaceSimpleOption.class_7275- Mappings:
Namespace Name Mixin selector official bLebi$e;b()Iintermediary comp_594Lnet/minecraft/class_7172$class_7275;comp_594()Inamed maxInclusiveLnet/minecraft/client/option/SimpleOption$class_7275;maxInclusive()I
-