Record Class EquipmentModel.Dyeable
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.equipment.EquipmentModel.Dyeable
- Record Components:
colorWhenUndyed-
- Enclosing class:
EquipmentModel
@Environment(CLIENT)
public static record EquipmentModel.Dyeable(Optional<Integer> colorWhenUndyed)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/entity/equipment/EquipmentModel$Dyeableintermediary net/minecraft/class_10186$class_10188official hmw$bnamed colorWhenUndyedintermediary comp_3170official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EquipmentModel.Dyeable> The field for thecolorWhenUndyedrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecolorWhenUndyedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
colorWhenUndyed
The field for thecolorWhenUndyedrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/client/render/entity/equipment/EquipmentModel$Dyeable;CODEC:Lcom/mojang/serialization/Codec;intermediary field_54123Lnet/minecraft/class_10186$class_10188;field_54123:Lcom/mojang/serialization/Codec;official aLhmw$b;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Dyeable
-
-
Method Details
-
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). -
colorWhenUndyed
Returns the value of thecolorWhenUndyedrecord component.- Returns:
- the value of the
colorWhenUndyedrecord component
-