Record Class BearerToken

java.lang.Object
java.lang.Record
net.minecraft.network.encryption.BearerToken
Record Components:
secretKey -

public record BearerToken(String secretKey) extends Record
Mappings:
Namespace Name
named net/minecraft/network/encryption/BearerToken
intermediary net/minecraft/class_12003
official avr
named secretKey
intermediary comp_4833
official a
  • Field Details

    • secretKey

      private final String secretKey
      The field for the secretKey record component.
    • ALLOWED_CHARS

      private static final String ALLOWED_CHARS
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named ALLOWED_CHARS Lnet/minecraft/network/encryption/BearerToken;ALLOWED_CHARS:Ljava/lang/String;
      intermediary field_62839 Lnet/minecraft/class_12003;field_62839:Ljava/lang/String;
      official b Lavr;b:Ljava/lang/String;
  • Constructor Details

    • BearerToken

      public BearerToken(String string)
  • Method Details

    • isValid

      public static boolean isValid(String token)
      Mappings:
      Namespace Name Mixin selector
      named isValid Lnet/minecraft/network/encryption/BearerToken;isValid(Ljava/lang/String;)Z
      intermediary method_74524 Lnet/minecraft/class_12003;method_74524(Ljava/lang/String;)Z
      official a Lavr;a(Ljava/lang/String;)Z
    • generate

      public static String generate()
      Mappings:
      Namespace Name Mixin selector
      named generate Lnet/minecraft/network/encryption/BearerToken;generate()Ljava/lang/String;
      intermediary method_74523 Lnet/minecraft/class_12003;method_74523()Ljava/lang/String;
      official a Lavr;a()Ljava/lang/String;
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • secretKey

      public String secretKey()
      Returns the value of the secretKey record component.
      Returns:
      the value of the secretKey record component