Record Class SelectItemModel.SwitchCase<T>
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.item.SelectItemModel.SwitchCase<T>
- Enclosing class:
SelectItemModel<T>
public static record SelectItemModel.SwitchCase<T>(List<T> values, ItemModel.Unbaked model)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ItemModel.Unbaked
The field for themodel
record component.The field for thevalues
record component. -
Constructor Summary
ConstructorsConstructorDescriptionSwitchCase
(List<T> values, ItemModel.Unbaked model) Creates an instance of aSwitchCase
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> com.mojang.serialization.Codec
<SelectItemModel.SwitchCase<T>> codec
(com.mojang.serialization.Codec<T> p_387015_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.model()
Returns the value of themodel
record component.final String
toString()
Returns a string representation of this record class.values()
Returns the value of thevalues
record component.
-
Field Details
-
values
The field for thevalues
record component. -
model
The field for themodel
record component.
-
-
Constructor Details
-
SwitchCase
Creates an instance of aSwitchCase
record class.- Parameters:
values
- the value for thevalues
record componentmodel
- the value for themodel
record component
-
-
Method Details
-
codec
public static <T> com.mojang.serialization.Codec<SelectItemModel.SwitchCase<T>> codec(com.mojang.serialization.Codec<T> p_387015_) -
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
-
model
Returns the value of themodel
record component.- Returns:
- the value of the
model
record component
-