Package net.minecraft.client.realms.util
Record Class RealmsTextureManager.RealmsTexture
java.lang.Object
java.lang.Record
net.minecraft.client.realms.util.RealmsTextureManager.RealmsTexture
- Record Components:
image
-textureId
-
- Enclosing class:
RealmsTextureManager
@Environment(CLIENT)
public static record RealmsTextureManager.RealmsTexture(String image, Identifier textureId)
extends Record
- Mappings:
Namespace Name official eky$a
intermediary net/minecraft/class_4446$class_4447
named net/minecraft/client/realms/util/RealmsTextureManager$RealmsTexture
official a
intermediary comp_1254
named image
official b
intermediary comp_1255
named textureId
-
Field Summary
-
Constructor Summary
-
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
-
Constructor Details
-
RealmsTexture
- Mappings:
Namespace Name Mixin selector official <init>
Leky$a;<init>(Ljava/lang/String;Ladd;)V
intermediary <init>
Lnet/minecraft/class_4446$class_4447;<init>(Ljava/lang/String;Lnet/minecraft/class_2960;)V
named <init>
Lnet/minecraft/client/realms/util/RealmsTextureManager$RealmsTexture;<init>(Ljava/lang/String;Lnet/minecraft/util/Identifier;)V
-
-
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
-