Record Class PaintingVariant
java.lang.Object
java.lang.Record
net.minecraft.world.entity.decoration.PaintingVariant
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ResourceLocationThe field for theassetIdrecord component.The field for theauthorrecord component.static final com.mojang.serialization.Codec<Holder<PaintingVariant>> static final com.mojang.serialization.Codec<PaintingVariant> static final StreamCodec<RegistryFriendlyByteBuf, PaintingVariant> private final intThe field for theheightrecord component.static final StreamCodec<RegistryFriendlyByteBuf, Holder<PaintingVariant>> The field for thetitlerecord component.private final intThe field for thewidthrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionPaintingVariant(int width, int height, ResourceLocation assetId, Optional<Component> title, Optional<Component> author) Creates an instance of aPaintingVariantrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintarea()assetId()Returns the value of theassetIdrecord component.author()Returns the value of theauthorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.title()Returns the value of thetitlerecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
-
Field Details
-
width
private final int widthThe field for thewidthrecord component. -
height
private final int heightThe field for theheightrecord component. -
assetId
The field for theassetIdrecord component. -
title
The field for thetitlerecord component. -
author
The field for theauthorrecord component. -
DIRECT_CODEC
-
DIRECT_STREAM_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
PaintingVariant
public PaintingVariant(int width, int height, ResourceLocation assetId, Optional<Component> title, Optional<Component> author) Creates an instance of aPaintingVariantrecord class.- Parameters:
width- the value for thewidthrecord componentheight- the value for theheightrecord componentassetId- the value for theassetIdrecord componenttitle- the value for thetitlerecord componentauthor- the value for theauthorrecord component
-
-
Method Details
-
area
public int area() -
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 '=='. -
width
public int width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public int height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-
assetId
Returns the value of theassetIdrecord component.- Returns:
- the value of the
assetIdrecord component
-
title
Returns the value of thetitlerecord component.- Returns:
- the value of the
titlerecord component
-
author
Returns the value of theauthorrecord component.- Returns:
- the value of the
authorrecord component
-