Package net.minecraft.data.models
Record Class ItemModelGenerators.TrimModelData
java.lang.Object
java.lang.Record
net.minecraft.data.models.ItemModelGenerators.TrimModelData
- Enclosing class:
- ItemModelGenerators
static record ItemModelGenerators.TrimModelData(String name, float itemModelIndex, Map<ArmorMaterial,String> overrideArmorMaterials)
extends Record 
- 
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 SummaryConstructorsConstructorDescriptionTrimModelData(String name, float itemModelIndex, Map<ArmorMaterial, String> overrideArmorMaterials) Creates an instance of aTrimModelDatarecord 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.floatReturns the value of theitemModelIndexrecord component.name()Returns the value of thenamerecord component.name(ArmorMaterial p_268105_) 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- 
TrimModelDataTrimModelData(String name, float itemModelIndex, Map<ArmorMaterial, String> overrideArmorMaterials) Creates an instance of aTrimModelDatarecord class.- Parameters:
- name- the value for the- namerecord component
- itemModelIndex- the value for the- itemModelIndexrecord component
- overrideArmorMaterials- the value for the- overrideArmorMaterialsrecord component
 
 
- 
- 
Method Details- 
name
- 
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
 
 
-