Package com.mojang.realmsclient.util
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, ResourceLocation textureId)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final StringThe field for theimagerecord component.private final ResourceLocationThe field for thetextureIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRealmsTexture(String image, ResourceLocation 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
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. 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
-