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 aPaintingVariant
record class. -
Method Summary
Modifier and TypeMethodDescriptionassetId()
Returns the value of theassetId
record component.@Nullable com.viaversion.nbt.tag.Tag
author()
Returns the value of theauthor
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.@Nullable com.viaversion.nbt.tag.Tag
title()
Returns the value of thetitle
record component.final String
toString()
Returns a string representation of this record class.int
width()
Returns the value of thewidth
record 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 aPaintingVariant
record class.- Parameters:
width
- the value for thewidth
record componentheight
- the value for theheight
record componentassetId
- the value for theassetId
record componenttitle
- the value for thetitle
record componentauthor
- the value for theauthor
record 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 thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-
assetId
Returns the value of theassetId
record component.- Returns:
- the value of the
assetId
record component
-
title
public @Nullable com.viaversion.nbt.tag.Tag title()Returns the value of thetitle
record component.- Returns:
- the value of the
title
record component
-
author
public @Nullable com.viaversion.nbt.tag.Tag author()Returns the value of theauthor
record component.- Returns:
- the value of the
author
record component
-