Record Class PaintingVariant
java.lang.Object
java.lang.Record
net.minecraft.world.entity.decoration.painting.PaintingVariant
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final IdentifierThe 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, Identifier 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
-
author
-
DIRECT_CODEC
-
DIRECT_STREAM_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
PaintingVariant
public PaintingVariant(int width, int height, Identifier 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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
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
-
author
-