Record Class EquipmentRenderer.LayerTextureKey
java.lang.Object
java.lang.Record
net.minecraft.client.render.entity.equipment.EquipmentRenderer.LayerTextureKey
- Record Components:
- layerType-
- layer-
- Enclosing class:
- EquipmentRenderer
@Environment(CLIENT)
private static record EquipmentRenderer.LayerTextureKey(EquipmentModel.LayerType layerType, EquipmentModel.Layer layer)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/entity/equipment/EquipmentRenderer$LayerTextureKey- intermediary - net/minecraft/class_10197$class_10198- official - gwe$a- named - layerType- intermediary - comp_3197- official - a- named - layer- intermediary - comp_3198- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final EquipmentModel.LayerThe field for thelayerrecord component.private final EquipmentModel.LayerTypeThe field for thelayerTyperecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionLayerTextureKey(EquipmentModel.LayerType layerType, EquipmentModel.Layer layer) Creates an instance of aLayerTextureKeyrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.layer()Returns the value of thelayerrecord component.Returns the value of thelayerTyperecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
LayerTextureKeyLayerTextureKey(EquipmentModel.LayerType layerType, EquipmentModel.Layer layer) Creates an instance of aLayerTextureKeyrecord class.
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
layerTypeReturns the value of thelayerTyperecord component.- Returns:
- the value of the layerTyperecord component
 
- 
layerReturns the value of thelayerrecord component.- Returns:
- the value of the layerrecord component
 
 
-