Record Class TrimMaterial
java.lang.Object
java.lang.Record
net.minecraft.world.item.armortrim.TrimMaterial
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
The field for theassetName
record component.static final com.mojang.serialization.Codec<Holder<TrimMaterial>>
private final Component
The field for thedescription
record component.static final com.mojang.serialization.Codec<TrimMaterial>
The field for theingredient
record component.private final float
The field for theitemModelIndex
record component.private final Map<ArmorMaterials,
String> The field for theoverrideArmorMaterials
record component. -
Constructor Summary
ConstructorDescriptionTrimMaterial
(String assetName, Holder<Item> ingredient, float itemModelIndex, Map<ArmorMaterials, String> overrideArmorMaterials, Component description) Creates an instance of aTrimMaterial
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theassetName
record component.static TrimMaterial
create
(String p_268108_, Item p_268361_, float p_268202_, Component p_268273_, Map<ArmorMaterials, String> p_267977_) Returns the value of thedescription
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theingredient
record component.float
Returns the value of theitemModelIndex
record component.Returns the value of theoverrideArmorMaterials
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
assetName
The field for theassetName
record component. -
ingredient
The field for theingredient
record component. -
itemModelIndex
private final float itemModelIndexThe field for theitemModelIndex
record component. -
overrideArmorMaterials
The field for theoverrideArmorMaterials
record component. -
description
The field for thedescription
record component. -
DIRECT_CODEC
-
CODEC
-
-
Constructor Details
-
TrimMaterial
public TrimMaterial(String assetName, Holder<Item> ingredient, float itemModelIndex, Map<ArmorMaterials, String> overrideArmorMaterials, Component description) Creates an instance of aTrimMaterial
record class.- Parameters:
assetName
- the value for theassetName
record componentingredient
- the value for theingredient
record componentitemModelIndex
- the value for theitemModelIndex
record componentoverrideArmorMaterials
- the value for theoverrideArmorMaterials
record componentdescription
- the value for thedescription
record component
-
-
Method Details
-
create
public static TrimMaterial create(String p_268108_, Item p_268361_, float p_268202_, Component p_268273_, Map<ArmorMaterials, String> p_267977_) -
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 '=='. -
assetName
Returns the value of theassetName
record component.- Returns:
- the value of the
assetName
record component
-
ingredient
Returns the value of theingredient
record component.- Returns:
- the value of the
ingredient
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
-
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-