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 kz$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 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
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.getAppliedName
(ArmorMaterial armorMaterial) 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.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
-
TrimMaterial
TrimMaterial(String string, float float2, Map<ArmorMaterial, String> map)
-
-
Method Details
-
getAppliedName
- Mappings:
Namespace Name Mixin selector official a
Lkz$a;a(Lcdi;)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;
-
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
-