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 - named - net/minecraft/client/realms/util/RealmsTextureManager$RealmsTexture- intermediary - net/minecraft/class_4446$class_4447- official - fpf$a- named - image- intermediary - comp_1254- official - a- named - textureId- intermediary - comp_1255- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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
- 
Constructor Details- 
RealmsTexture- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/client/realms/util/RealmsTextureManager$RealmsTexture;<init>(Ljava/lang/String;Lnet/minecraft/util/Identifier;)V- intermediary - <init>- Lnet/minecraft/class_4446$class_4447;<init>(Ljava/lang/String;Lnet/minecraft/class_2960;)V- official - <init>- Lfpf$a;<init>(Ljava/lang/String;Lalr;)V
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
imageReturns the value of theimagerecord component.- Returns:
- the value of the imagerecord component
 
- 
textureIdReturns the value of thetextureIdrecord component.- Returns:
- the value of the textureIdrecord component
 
 
-