Record Class MessageSignature.Packed
java.lang.Object
java.lang.Record
net.minestom.server.crypto.MessageSignature.Packed
- Enclosing class:
MessageSignature
public static record MessageSignature.Packed(int id, @UnknownNullability MessageSignature fullSignature)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPacked(int id, @UnknownNullability MessageSignature fullSignature) Creates an instance of aPackedrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of thefullSignaturerecord component.final inthashCode()Returns a hash code value for this object.intid()Returns the value of theidrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
Packed
Creates an instance of aPackedrecord class.- Parameters:
id- the value for theidrecord componentfullSignature- the value for thefullSignaturerecord component
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
id
public int id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
fullSignature
Returns the value of thefullSignaturerecord component.- Returns:
- the value of the
fullSignaturerecord component
-