Package net.minecraft.item.trim
Record Class ArmorTrimMaterial
java.lang.Object
java.lang.Record
net.minecraft.item.trim.ArmorTrimMaterial
- Record Components:
- assetName-
- ingredient-
- itemModelIndex-
- overrideArmorMaterials-
- description-
public record ArmorTrimMaterial(String assetName, RegistryEntry<Item> ingredient, float itemModelIndex, Map<ArmorMaterials,String> overrideArmorMaterials, Text description)
extends Record 
- Mappings:
- Namespace - Name - official - cic- intermediary - net/minecraft/class_8054- named - net/minecraft/item/trim/ArmorTrimMaterial- official - c- intermediary - comp_1208- named - assetName- official - d- intermediary - comp_1209- named - ingredient- official - e- intermediary - comp_1210- named - itemModelIndex- official - f- intermediary - comp_1237- named - overrideArmorMaterials- official - g- intermediary - comp_1212- named - description
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final StringThe field for theassetNamerecord component.static final com.mojang.serialization.Codec<ArmorTrimMaterial>private final TextThe field for thedescriptionrecord component.static final com.mojang.serialization.Codec<RegistryEntry<ArmorTrimMaterial>>private final RegistryEntry<Item>The field for theingredientrecord component.private final floatThe field for theitemModelIndexrecord component.private final Map<ArmorMaterials,String> The field for theoverrideArmorMaterialsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionArmorTrimMaterial(String string, RegistryEntry<Item> registryEntry, float float2, Map<ArmorMaterials, String> map, Text text) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theassetNamerecord component.Returns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theingredientrecord component.floatReturns the value of theitemModelIndexrecord component.static ArmorTrimMaterialof(String assetName, Item ingredient, float itemModelIndex, Text description, Map<ArmorMaterials, String> overrideArmorMaterials) Returns the value of theoverrideArmorMaterialsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
assetNameThe field for theassetNamerecord component.
- 
ingredientThe field for theingredientrecord component.
- 
itemModelIndexprivate final float itemModelIndexThe field for theitemModelIndexrecord component.
- 
overrideArmorMaterialsThe field for theoverrideArmorMaterialsrecord component.
- 
descriptionThe field for thedescriptionrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Lcic;a:Lcom/mojang/serialization/Codec;- intermediary - field_42002- Lnet/minecraft/class_8054;field_42002:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/item/trim/ArmorTrimMaterial;CODEC:Lcom/mojang/serialization/Codec;
 
- 
ENTRY_CODEC- Mappings:
- Namespace - Name - Mixin selector - official - b- Lcic;b:Lcom/mojang/serialization/Codec;- intermediary - field_42003- Lnet/minecraft/class_8054;field_42003:Lcom/mojang/serialization/Codec;- named - ENTRY_CODEC- Lnet/minecraft/item/trim/ArmorTrimMaterial;ENTRY_CODEC:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
ArmorTrimMaterialpublic ArmorTrimMaterial(String string, RegistryEntry<Item> registryEntry, float float2, Map<ArmorMaterials, String> map, Text text) 
 
- 
- 
Method Details- 
ofpublic static ArmorTrimMaterial of(String assetName, Item ingredient, float itemModelIndex, Text description, Map<ArmorMaterials, String> overrideArmorMaterials) - Mappings:
- Namespace - Name - Mixin selector - official - a- Lcic;a(Ljava/lang/String;Lcfu;FLsw;Ljava/util/Map;)Lcic;- intermediary - method_48438- Lnet/minecraft/class_8054;method_48438(Ljava/lang/String;Lnet/minecraft/class_1792;FLnet/minecraft/class_2561;Ljava/util/Map;)Lnet/minecraft/class_8054;- named - of- Lnet/minecraft/item/trim/ArmorTrimMaterial;of(Ljava/lang/String;Lnet/minecraft/item/Item;FLnet/minecraft/text/Text;Ljava/util/Map;)Lnet/minecraft/item/trim/ArmorTrimMaterial;
 
- 
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 '=='.
- 
assetNameReturns the value of theassetNamerecord component.- Returns:
- the value of the assetNamerecord component
 
- 
ingredientReturns the value of theingredientrecord component.- Returns:
- the value of the ingredientrecord 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
 
- 
descriptionReturns the value of thedescriptionrecord component.- Returns:
- the value of the descriptionrecord component
 
 
-