Record Class SkinFetcher.SkinCacheData

java.lang.Object
java.lang.Record
de.oliver.fancynpcs.api.utils.SkinFetcher.SkinCacheData
Record Components:
skinData - The skin data.
lastUpdated - The timestamp when the skin data was last updated.
timeToLive - The time to live of the skin data in milliseconds.
Enclosing class:
SkinFetcher

@Deprecated @Internal public static record SkinFetcher.SkinCacheData(@NotNull SkinFetcher.SkinData skinData, long lastUpdated, long timeToLive) extends Record
Deprecated.
Represents the cached skin data. For internal use only.
  • Constructor Details

    • SkinCacheData

      public SkinCacheData(@NotNull @NotNull SkinFetcher.SkinData skinData, long lastUpdated, long timeToLive)
      Deprecated.
      Creates an instance of a SkinCacheData record class.
      Parameters:
      skinData - the value for the skinData record component
      lastUpdated - the value for the lastUpdated record component
      timeToLive - the value for the timeToLive record component
  • Method Details

    • isExpired

      public boolean isExpired()
      Deprecated.
    • toString

      public final String toString()
      Deprecated.
      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
    • hashCode

      public final int hashCode()
      Deprecated.
      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
    • equals

      public final boolean equals(Object o)
      Deprecated.
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • skinData

      @NotNull public @NotNull SkinFetcher.SkinData skinData()
      Deprecated.
      Returns the value of the skinData record component.
      Returns:
      the value of the skinData record component
    • lastUpdated

      public long lastUpdated()
      Deprecated.
      Returns the value of the lastUpdated record component.
      Returns:
      the value of the lastUpdated record component
    • timeToLive

      public long timeToLive()
      Deprecated.
      Returns the value of the timeToLive record component.
      Returns:
      the value of the timeToLive record component