Package net.minecraft.network.encryption
Record Class PublicPlayerSession
java.lang.Object
java.lang.Record
net.minecraft.network.encryption.PublicPlayerSession
- Record Components:
sessionId
-publicKeyData
-
- Mappings:
Namespace Name official tz
intermediary net/minecraft/class_7822
named net/minecraft/network/encryption/PublicPlayerSession
official a
intermediary comp_1085
named sessionId
official b
intermediary comp_1086
named publicKeyData
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final PlayerPublicKey
The field for thepublicKeyData
record component.private final UUID
The field for thesessionId
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateUnpacker
(UUID sender) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepublicKeyData
record component.Returns the value of thesessionId
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
sessionId
The field for thesessionId
record component. -
publicKeyData
The field for thepublicKeyData
record component.
-
-
Constructor Details
-
PublicPlayerSession
-
-
Method Details
-
createVerifier
- Mappings:
Namespace Name Mixin selector official a
Ltz;a()Lue;
intermediary method_46296
Lnet/minecraft/class_7822;method_46296()Lnet/minecraft/class_7615;
named createVerifier
Lnet/minecraft/network/encryption/PublicPlayerSession;createVerifier()Lnet/minecraft/network/message/MessageVerifier;
-
createUnpacker
- Mappings:
Namespace Name Mixin selector official a
Ltz;a(Ljava/util/UUID;)Luc$b;
intermediary method_46297
Lnet/minecraft/class_7822;method_46297(Ljava/util/UUID;)Lnet/minecraft/class_7610$class_7611;
named createUnpacker
Lnet/minecraft/network/encryption/PublicPlayerSession;createUnpacker(Ljava/util/UUID;)Lnet/minecraft/network/message/MessageChain$Unpacker;
-
toSerialized
- Mappings:
Namespace Name Mixin selector official b
Ltz;b()Ltz$a;
intermediary method_46298
Lnet/minecraft/class_7822;method_46298()Lnet/minecraft/class_7822$class_7823;
named toSerialized
Lnet/minecraft/network/encryption/PublicPlayerSession;toSerialized()Lnet/minecraft/network/encryption/PublicPlayerSession$Serialized;
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
sessionId
Returns the value of thesessionId
record component.- Returns:
- the value of the
sessionId
record component
-
publicKeyData
Returns the value of thepublicKeyData
record component.- Returns:
- the value of the
publicKeyData
record component
-