Record Class BannerPattern
java.lang.Object
java.lang.Record
net.minecraft.world.level.block.entity.BannerPattern
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ResourceLocationThe field for theassetIdrecord component.static final com.mojang.serialization.Codec<Holder<BannerPattern>> static final com.mojang.serialization.Codec<BannerPattern> static final StreamCodec<RegistryFriendlyByteBuf, BannerPattern> static final StreamCodec<RegistryFriendlyByteBuf, Holder<BannerPattern>> private final StringThe field for thetranslationKeyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionBannerPattern(ResourceLocation assetId, String translationKey) Creates an instance of aBannerPatternrecord class. -
Method Summary
Modifier and TypeMethodDescriptionassetId()Returns the value of theassetIdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the value of thetranslationKeyrecord component.
-
Field Details
-
assetId
The field for theassetIdrecord component. -
translationKey
The field for thetranslationKeyrecord component. -
DIRECT_CODEC
-
DIRECT_STREAM_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
BannerPattern
Creates an instance of aBannerPatternrecord class.- Parameters:
assetId- the value for theassetIdrecord componenttranslationKey- the value for thetranslationKeyrecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
assetId
Returns the value of theassetIdrecord component.- Returns:
- the value of the
assetIdrecord component
-
translationKey
Returns the value of thetranslationKeyrecord component.- Returns:
- the value of the
translationKeyrecord component
-