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 Summary
FieldsModifier and TypeFieldDescriptionstatic final intprivate final @Nullable MessageSignatureThe field for thefullSignaturerecord component.private final intThe field for theidrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionPacked(int id) Packed(int id, @Nullable MessageSignature fullSignature) Creates an instance of aPackedrecord class.Packed(MessageSignature signature) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.@Nullable MessageSignatureReturns 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 input) final StringtoString()Returns a string representation of this record class.unpack(MessageSignatureCache cache) static voidwrite(FriendlyByteBuf output, MessageSignature.Packed packed)
-
Field Details
-
id
private final int idThe field for theidrecord component. -
fullSignature
The field for thefullSignaturerecord component. -
FULL_SIGNATURE
public static final int FULL_SIGNATURE- See Also:
-
-
Constructor Details
-
Packed
-
Packed
public Packed(int id) -
Packed
Creates an instance of aPackedrecord class.- Parameters:
id- the value for theidrecord componentfullSignature- the value for thefullSignaturerecord component
-
-
Method Details
-
read
-
write
-
unpack
-
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
-