Record Class ClientDebugSubscriptionManager.ValueWithExpiry<T>

java.lang.Object
java.lang.Record
net.minecraft.client.network.ClientDebugSubscriptionManager.ValueWithExpiry<T>
Record Components:
value -
expiresAfterTime -
Enclosing class:
ClientDebugSubscriptionManager

@Environment(CLIENT) private static record ClientDebugSubscriptionManager.ValueWithExpiry<T>(T value, long expiresAfterTime) extends Record
Mappings:
Namespace Name
named net/minecraft/client/network/ClientDebugSubscriptionManager$ValueWithExpiry
intermediary net/minecraft/class_12036$class_12040
official gzk$d
named value
intermediary comp_4892
official a
named expiresAfterTime
intermediary comp_4893
official b
  • Field Details

    • value

      private final T value
      The field for the value record component.
    • expiresAfterTime

      private final long expiresAfterTime
      The field for the expiresAfterTime record component.
    • INEXPIRABLE

      private static final long INEXPIRABLE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named INEXPIRABLE Lnet/minecraft/client/network/ClientDebugSubscriptionManager$ValueWithExpiry;INEXPIRABLE:J
      intermediary field_62943 Lnet/minecraft/class_12036$class_12040;field_62943:J
      official c Lgzk$d;c:J
  • Constructor Details

    • ValueWithExpiry

      ValueWithExpiry(T t, long long2)
  • Method Details

    • hasExpired

      public boolean hasExpired(long time)
      Mappings:
      Namespace Name Mixin selector
      named hasExpired Lnet/minecraft/client/network/ClientDebugSubscriptionManager$ValueWithExpiry;hasExpired(J)Z
      intermediary method_74749 Lnet/minecraft/class_12036$class_12040;method_74749(J)Z
      official a Lgzk$d;a(J)Z
    • 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
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • value

      public T value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • expiresAfterTime

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