Record Class NineSlice
java.lang.Object
java.lang.Record
com.pixelmonmod.api.client.screen.render.NineSlice
public record NineSlice(net.minecraft.resources.ResourceLocation texture, int textureSize, int x, int y, int pieceSize)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionNineSlice(net.minecraft.resources.ResourceLocation texture, int textureSize, int x, int y, int pieceSize) Creates an instance of aNineSlicerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of thepieceSizerecord component.net.minecraft.resources.ResourceLocationtexture()Returns the value of thetexturerecord component.intReturns the value of thetextureSizerecord component.final StringtoString()Returns a string representation of this record class.static NineSlicevanilla(int x, int y, int pieceSize) intx()Returns the value of thexrecord component.inty()Returns the value of theyrecord component.
-
Constructor Details
-
NineSlice
public NineSlice(net.minecraft.resources.ResourceLocation texture, int textureSize, int x, int y, int pieceSize) Creates an instance of aNineSlicerecord class.- Parameters:
texture- the value for thetexturerecord componenttextureSize- the value for thetextureSizerecord componentx- the value for thexrecord componenty- the value for theyrecord componentpieceSize- the value for thepieceSizerecord component
-
-
Method Details
-
vanilla
-
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 '=='. -
texture
public net.minecraft.resources.ResourceLocation texture()Returns the value of thetexturerecord component.- Returns:
- the value of the
texturerecord component
-
textureSize
public int textureSize()Returns the value of thetextureSizerecord component.- Returns:
- the value of the
textureSizerecord component
-
x
public int x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public int y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord component
-
pieceSize
public int pieceSize()Returns the value of thepieceSizerecord component.- Returns:
- the value of the
pieceSizerecord component
-