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
Modifier and TypeFieldDescriptionprivate final String
The field for theimage
record component.private final ResourceLocation
The field for thetextureId
record component. -
Constructor Summary
ConstructorDescriptionRealmsTexture
(String image, ResourceLocation textureId) Creates an instance of aRealmsTexture
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.image()
Returns the value of theimage
record component.Returns the value of thetextureId
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
image
The field for theimage
record component. -
textureId
The field for thetextureId
record component.
-
-
Constructor Details
-
RealmsTexture
Creates an instance of aRealmsTexture
record class.- Parameters:
image
- the value for theimage
record componenttextureId
- the value for thetextureId
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
image
Returns the value of theimage
record component.- Returns:
- the value of the
image
record component
-
textureId
Returns the value of thetextureId
record component.- Returns:
- the value of the
textureId
record component
-