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 intermediary net/minecraft/class_4915$class_8072official kr$anamed net/minecraft/data/client/ItemModelGenerator$TrimMaterialintermediary comp_1219official anamed nameintermediary comp_1220official bnamed itemModelIndexintermediary comp_1239official cnamed overrideArmorMaterials
-
Field Summary
FieldsModifier 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 Summary
Constructors -
Method Summary
Modifier 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
-
name
The field for thenamerecord component. -
itemModelIndex
private final float itemModelIndexThe field for theitemModelIndexrecord component. -
overrideArmorMaterials
The field for theoverrideArmorMaterialsrecord component.
-
-
Constructor Details
-
TrimMaterial
TrimMaterial(String string, float float2, Map<ArmorMaterial, String> map)
-
-
Method Details
-
getAppliedName
- Mappings:
Namespace Name Mixin selector intermediary method_48744Lnet/minecraft/class_4915$class_8072;method_48744(Lnet/minecraft/class_1741;)Ljava/lang/String;official aLkr$a;a(Lcdi;)Ljava/lang/String;named getAppliedNameLnet/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 thenamerecord component.- Returns:
- the value of the
namerecord component
-
itemModelIndex
public float itemModelIndex()Returns the value of theitemModelIndexrecord component.- Returns:
- the value of the
itemModelIndexrecord component
-
overrideArmorMaterials
Returns the value of theoverrideArmorMaterialsrecord component.- Returns:
- the value of the
overrideArmorMaterialsrecord component
-