Record Class TrimPattern
java.lang.Object
java.lang.Record
net.minecraft.world.item.armortrim.TrimPattern
public record TrimPattern(ResourceLocation assetId, Holder<Item> templateItem, Component description, boolean decal)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ResourceLocationThe field for theassetIdrecord component.static final com.mojang.serialization.Codec<Holder<TrimPattern>> private final booleanThe field for thedecalrecord component.private final ComponentThe field for thedescriptionrecord component.static final com.mojang.serialization.Codec<TrimPattern> static final StreamCodec<RegistryFriendlyByteBuf, TrimPattern> static final StreamCodec<RegistryFriendlyByteBuf, Holder<TrimPattern>> The field for thetemplateItemrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionTrimPattern(ResourceLocation assetId, Holder<Item> templateItem, Component description, boolean decal) Creates an instance of aTrimPatternrecord class. -
Method Summary
Modifier and TypeMethodDescriptionassetId()Returns the value of theassetIdrecord component.copyWithStyle(Holder<TrimMaterial> p_266827_) booleandecal()Returns the value of thedecalrecord 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 thetemplateItemrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
assetId
The field for theassetIdrecord component. -
templateItem
The field for thetemplateItemrecord component. -
description
The field for thedescriptionrecord component. -
decal
private final boolean decalThe field for thedecalrecord component. -
DIRECT_CODEC
-
DIRECT_STREAM_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
TrimPattern
public TrimPattern(ResourceLocation assetId, Holder<Item> templateItem, Component description, boolean decal) Creates an instance of aTrimPatternrecord class.- Parameters:
assetId- the value for theassetIdrecord componenttemplateItem- the value for thetemplateItemrecord componentdescription- the value for thedescriptionrecord componentdecal- the value for thedecalrecord component
-
-
Method Details
-
copyWithStyle
-
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 '=='. -
assetId
Returns the value of theassetIdrecord component.- Returns:
- the value of the
assetIdrecord component
-
templateItem
Returns the value of thetemplateItemrecord component.- Returns:
- the value of the
templateItemrecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
decal
public boolean decal()Returns the value of thedecalrecord component.- Returns:
- the value of the
decalrecord component
-