Package net.minecraft.data.client
Record Class ItemModelGenerator.TrimMaterial
java.lang.Object
java.lang.Record
net.minecraft.data.client.ItemModelGenerator.TrimMaterial
- Record Components:
- name-
- itemModelIndex-
- overrideArmorMaterials-
- Enclosing class:
- ItemModelGenerator
private static record ItemModelGenerator.TrimMaterial(String name, float itemModelIndex, Map<ArmorMaterial,String> overrideArmorMaterials)
extends Record 
- Mappings:
- Namespace - Name - official - kr$a- intermediary - net/minecraft/class_4915$class_8072- named - net/minecraft/data/client/ItemModelGenerator$TrimMaterial- official - a- intermediary - comp_1219- named - name- official - b- intermediary - comp_1220- named - itemModelIndex- official - c- intermediary - comp_1239- named - overrideArmorMaterials
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final floatThe field for theitemModelIndexrecord component.private final StringThe field for thenamerecord component.private final Map<ArmorMaterial,String> The field for theoverrideArmorMaterialsrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.getAppliedName(ArmorMaterial armorMaterial) final inthashCode()Returns a hash code value for this object.floatReturns the value of theitemModelIndexrecord component.name()Returns the value of thenamerecord component.Returns the value of theoverrideArmorMaterialsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
nameThe field for thenamerecord component.
- 
itemModelIndexprivate final float itemModelIndexThe field for theitemModelIndexrecord component.
- 
overrideArmorMaterialsThe field for theoverrideArmorMaterialsrecord component.
 
- 
- 
Constructor Details- 
TrimMaterialTrimMaterial(String string, float float2, Map<ArmorMaterial, String> map) 
 
- 
- 
Method Details- 
getAppliedName- Mappings:
- Namespace - Name - Mixin selector - official - a- Lkr$a;a(Lcdk;)Ljava/lang/String;- intermediary - method_48744- Lnet/minecraft/class_4915$class_8072;method_48744(Lnet/minecraft/class_1741;)Ljava/lang/String;- named - getAppliedName- Lnet/minecraft/data/client/ItemModelGenerator$TrimMaterial;getAppliedName(Lnet/minecraft/item/ArmorMaterial;)Ljava/lang/String;
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
nameReturns the value of thenamerecord component.- Returns:
- the value of the namerecord component
 
- 
itemModelIndexpublic float itemModelIndex()Returns the value of theitemModelIndexrecord component.- Returns:
- the value of the itemModelIndexrecord component
 
- 
overrideArmorMaterialsReturns the value of theoverrideArmorMaterialsrecord component.- Returns:
- the value of the overrideArmorMaterialsrecord component
 
 
-