Record Class RealmsTextureManager.RealmsTexture
java.lang.Object
java.lang.Record
com.mojang.realmsclient.util.RealmsTextureManager.RealmsTexture
- Enclosing class:
RealmsTextureManager
public static record RealmsTextureManager.RealmsTexture(String image, Identifier textureId)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final StringThe field for theimagerecord component.private final IdentifierThe field for thetextureIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRealmsTexture(String image, Identifier textureId) Creates an instance of aRealmsTexturerecord 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.image()Returns the value of theimagerecord component.Returns the value of thetextureIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
image
The field for theimagerecord component. -
textureId
The field for thetextureIdrecord component.
-
-
Constructor Details
-
RealmsTexture
Creates an instance of aRealmsTexturerecord class.- Parameters:
image- the value for theimagerecord componenttextureId- the value for thetextureIdrecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
image
Returns the value of theimagerecord component.- Returns:
- the value of the
imagerecord component
-
textureId
Returns the value of thetextureIdrecord component.- Returns:
- the value of the
textureIdrecord component
-