Package net.minecraft
Record Class class_7469
java.lang.Object
java.lang.Record
net.minecraft.class_7469
- Record Components:
sender
-timeStamp
-saltSignature
-
public record class_7469(UUID sender, Instant timeStamp, NetworkEncryptionUtils.SignatureData saltSignature)
extends Record
- Mappings:
Namespace Name official rk
intermediary net/minecraft/class_7469
named net/minecraft/class_7469
official a
intermediary comp_798
named sender
official b
intermediary comp_799
named timeStamp
official c
intermediary comp_800
named saltSignature
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final NetworkEncryptionUtils.SignatureData
The field for thesaltSignature
record component.private final UUID
The field for thesender
record component.private final Instant
The field for thetimeStamp
record component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_7469
(UUID uUID, Instant instant, NetworkEncryptionUtils.SignatureData signatureData) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static class_7469
boolean
method_43860
(Signature signature, String string) boolean
method_43861
(Signature signature, Text text) static void
method_43862
(Signature signature, Text text, UUID uUID, Instant instant, long long2) private static byte[]
method_43863
(Text text) Returns the value of thesaltSignature
record component.sender()
Returns the value of thesender
record component.Returns the value of thetimeStamp
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
sender
The field for thesender
record component. -
timeStamp
The field for thetimeStamp
record component. -
saltSignature
The field for thesaltSignature
record component.
-
-
Constructor Details
-
class_7469
-
-
Method Details
-
method_43859
- Mappings:
Namespace Name Mixin selector official a
Lrk;a()Lrk;
intermediary method_43859
Lnet/minecraft/class_7469;method_43859()Lnet/minecraft/class_7469;
named method_43859
Lnet/minecraft/class_7469;method_43859()Lnet/minecraft/class_7469;
-
method_43861
- Throws:
SignatureException
- Mappings:
Namespace Name Mixin selector official a
Lrk;a(Ljava/security/Signature;Lrf;)Z
intermediary method_43861
Lnet/minecraft/class_7469;method_43861(Ljava/security/Signature;Lnet/minecraft/class_2561;)Z
named method_43861
Lnet/minecraft/class_7469;method_43861(Ljava/security/Signature;Lnet/minecraft/text/Text;)Z
-
method_43860
- Throws:
SignatureException
- Mappings:
Namespace Name Mixin selector official a
Lrk;a(Ljava/security/Signature;Ljava/lang/String;)Z
intermediary method_43860
Lnet/minecraft/class_7469;method_43860(Ljava/security/Signature;Ljava/lang/String;)Z
named method_43860
Lnet/minecraft/class_7469;method_43860(Ljava/security/Signature;Ljava/lang/String;)Z
-
method_43862
public static void method_43862(Signature signature, Text text, UUID uUID, Instant instant, long long2) throws SignatureException - Throws:
SignatureException
- Mappings:
Namespace Name Mixin selector official a
Lrk;a(Ljava/security/Signature;Lrf;Ljava/util/UUID;Ljava/time/Instant;J)V
intermediary method_43862
Lnet/minecraft/class_7469;method_43862(Ljava/security/Signature;Lnet/minecraft/class_2561;Ljava/util/UUID;Ljava/time/Instant;J)V
named method_43862
Lnet/minecraft/class_7469;method_43862(Ljava/security/Signature;Lnet/minecraft/text/Text;Ljava/util/UUID;Ljava/time/Instant;J)V
-
method_43863
- Mappings:
Namespace Name Mixin selector official a
Lrk;a(Lrf;)[B
intermediary method_43863
Lnet/minecraft/class_7469;method_43863(Lnet/minecraft/class_2561;)[B
named method_43863
Lnet/minecraft/class_7469;method_43863(Lnet/minecraft/text/Text;)[B
-
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)
. -
sender
Returns the value of thesender
record component.- Returns:
- the value of the
sender
record component
-
timeStamp
Returns the value of thetimeStamp
record component.- Returns:
- the value of the
timeStamp
record component
-
saltSignature
Returns the value of thesaltSignature
record component.- Returns:
- the value of the
saltSignature
record component
-