Package net.minecraft.client
Record Class OptionInstance.LazyEnum<T>
java.lang.Object
java.lang.Record
net.minecraft.client.OptionInstance.LazyEnum<T>
- All Implemented Interfaces:
OptionInstance.CycleableValueSet<T>
,OptionInstance.ValueSet<T>
- Enclosing class:
- OptionInstance<T>
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.OptionInstance.CycleableValueSet
OptionInstance.CycleableValueSet.ValueSetter<T>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final com.mojang.serialization.Codec<T>
The field for thecodec
record component.The field for thevalidateValue
record component.The field for thevalues
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<T>
codec()
Returns the value of thecodec
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.final String
toString()
Returns a string representation of this record class.Returns the value of thevalidateValue
record component.validateValue
(T p_231689_) values()
Returns the value of thevalues
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.client.OptionInstance.CycleableValueSet
createButton, valueSetter
-
Field Details
-
values
The field for thevalues
record component. -
validateValue
The field for thevalidateValue
record component. -
codec
The field for thecodec
record component.
-
-
Constructor Details
-
LazyEnum
public LazyEnum(Supplier<List<T>> values, Function<T, Optional<T>> validateValue, com.mojang.serialization.Codec<T> codec) Creates an instance of aLazyEnum
record class.- Parameters:
values
- the value for thevalues
record componentvalidateValue
- the value for thevalidateValue
record componentcodec
- the value for thecodec
record component
-
-
Method Details
-
validateValue
- Specified by:
validateValue
in interfaceOptionInstance.ValueSet<T>
-
valueListSupplier
- Specified by:
valueListSupplier
in interfaceOptionInstance.CycleableValueSet<T>
-
codec
Returns the value of thecodec
record component.- Specified by:
codec
in interfaceOptionInstance.ValueSet<T>
- Returns:
- the value of the
codec
record component
-
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 withObjects::equals(Object,Object)
. -
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-
validateValue
Returns the value of thevalidateValue
record component.- Returns:
- the value of the
validateValue
record component
-