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 Summary
Modifier and TypeFieldDescriptionprivate final float
The field for theitemModelIndex
record component.private final String
The field for thename
record component.private final Map<ArmorMaterial,
String> The field for theoverrideArmorMaterials
record component. -
Constructor Summary
ConstructorDescriptionTrimModelData
(String name, float itemModelIndex, Map<ArmorMaterial, String> overrideArmorMaterials) Creates an instance of aTrimModelData
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.float
Returns the value of theitemModelIndex
record component.name()
Returns the value of thename
record component.name
(ArmorMaterial p_268105_) Returns the value of theoverrideArmorMaterials
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
name
The field for thename
record component. -
itemModelIndex
private final float itemModelIndexThe field for theitemModelIndex
record component. -
overrideArmorMaterials
The field for theoverrideArmorMaterials
record component.
-
-
Constructor Details
-
TrimModelData
TrimModelData(String name, float itemModelIndex, Map<ArmorMaterial, String> overrideArmorMaterials) Creates an instance of aTrimModelData
record class.- Parameters:
name
- the value for thename
record componentitemModelIndex
- the value for theitemModelIndex
record componentoverrideArmorMaterials
- the value for theoverrideArmorMaterials
record component
-
-
Method Details
-
name
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
itemModelIndex
public float itemModelIndex()Returns the value of theitemModelIndex
record component.- Returns:
- the value of the
itemModelIndex
record component
-
overrideArmorMaterials
Returns the value of theoverrideArmorMaterials
record component.- Returns:
- the value of the
overrideArmorMaterials
record component
-