Record Class PaintingVariant
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.PaintingVariant
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic HolderType<PaintingVariant>static HolderType<PaintingVariant> -
Constructor Summary
ConstructorsConstructorDescriptionPaintingVariant(int width, int height, String assetId) PaintingVariant(int width, int height, String assetId, @Nullable com.viaversion.nbt.tag.Tag title, @Nullable com.viaversion.nbt.tag.Tag author) Creates an instance of aPaintingVariantrecord class. -
Method Summary
Modifier and TypeMethodDescriptionassetId()Returns the value of theassetIdrecord component.@Nullable com.viaversion.nbt.tag.Tagauthor()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.@Nullable com.viaversion.nbt.tag.Tagtitle()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
-
TYPE1_21
-
TYPE1_21_2
-
-
Constructor Details
-
PaintingVariant
-
PaintingVariant
public PaintingVariant(int width, int height, String assetId, @Nullable com.viaversion.nbt.tag.Tag title, @Nullable com.viaversion.nbt.tag.Tag 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
-
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
public @Nullable com.viaversion.nbt.tag.Tag title()Returns the value of thetitlerecord component.- Returns:
- the value of the
titlerecord component
-
author
public @Nullable com.viaversion.nbt.tag.Tag author()Returns the value of theauthorrecord component.- Returns:
- the value of the
authorrecord component
-