Package net.minecraft.network.chat
Record Class MessageSignature.Packed
java.lang.Object
java.lang.Record
net.minecraft.network.chat.MessageSignature.Packed
- Enclosing class:
- MessageSignature
public static record MessageSignature.Packed(int id, @Nullable MessageSignature fullSignature)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final intprivate final MessageSignatureThe field for thefullSignaturerecord component.private final intThe field for theidrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPacked(int p_250015_) Packed(int id, MessageSignature fullSignature) Creates an instance of aPackedrecord class.Packed(MessageSignature p_249705_) 
- 
Method SummaryModifier 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.static MessageSignature.Packedread(FriendlyByteBuf p_250810_) final StringtoString()Returns a string representation of this record class.unpack(MessageSignatureCache p_254423_) static voidwrite(FriendlyByteBuf p_251691_, MessageSignature.Packed p_252193_) 
- 
Field Details- 
idprivate final int idThe field for theidrecord component.
- 
fullSignatureThe field for thefullSignaturerecord component.
- 
FULL_SIGNATUREpublic static final int FULL_SIGNATURE- See Also:
 
 
- 
- 
Constructor Details- 
Packed
- 
Packedpublic Packed(int p_250015_) 
- 
PackedCreates an instance of aPackedrecord class.- Parameters:
- id- the value for the- idrecord component
- fullSignature- the value for the- fullSignaturerecord component
 
 
- 
- 
Method Details- 
read
- 
write
- 
unpack
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
idpublic int id()Returns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
fullSignatureReturns the value of thefullSignaturerecord component.- Returns:
- the value of the fullSignaturerecord component
 
 
-