Record Class ClientLoginPluginResponsePacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.login.ClientLoginPluginResponsePacket
- All Implemented Interfaces:
ClientPacket
public record ClientLoginPluginResponsePacket(int messageId, byte @Nullable [] data)
extends Record
implements ClientPacket
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NetworkBuffer.Type<ClientLoginPluginResponsePacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientLoginPluginResponsePacket(int messageId, byte @Nullable [] data) Creates an instance of aClientLoginPluginResponsePacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbyte @Nullable []data()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of themessageIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientLoginPluginResponsePacket
Creates an instance of aClientLoginPluginResponsePacketrecord class.- Parameters:
messageId- the value for themessageIdrecord componentdata- the value for thedatarecord 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. -
messageId
public int messageId()Returns the value of themessageIdrecord component.- Returns:
- the value of the
messageIdrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-