Record Class SkinManager.CacheKey

java.lang.Object
java.lang.Record
net.minecraft.client.resources.SkinManager.CacheKey
Enclosing class:
SkinManager

static record SkinManager.CacheKey(com.mojang.authlib.GameProfile profile) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final com.mojang.authlib.GameProfile
    The field for the profile record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    CacheKey(com.mojang.authlib.GameProfile profile)
    Creates an instance of a CacheKey record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    equals(Object p_299382_)
    Indicates whether some other object is "equal to" this one.
    int
    Returns a hash code value for this object.
    com.mojang.authlib.GameProfile
    Returns the value of the profile record component.
    private String
     
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • profile

      private final com.mojang.authlib.GameProfile profile
      The field for the profile record component.
  • Constructor Details

    • CacheKey

      CacheKey(com.mojang.authlib.GameProfile profile)
      Creates an instance of a CacheKey record class.
      Parameters:
      profile - the value for the profile record component
  • Method Details

    • equals

      public boolean equals(Object p_299382_)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      p_299382_ - the object with which to compare
      Returns:
      true if this object is the same as the p_299382_ argument; false otherwise.
    • hashCode

      public int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • texturesData

      @Nullable private String texturesData()
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • profile

      public com.mojang.authlib.GameProfile profile()
      Returns the value of the profile record component.
      Returns:
      the value of the profile record component