Record Class PacketParser.Client

java.lang.Object
java.lang.Record
net.minestom.server.network.packet.PacketParser.Client
All Implemented Interfaces:
PacketParser<ClientPacket>
Enclosing interface:
PacketParser<T>

public static record PacketParser.Client(PacketRegistry<ClientPacket> handshake, PacketRegistry<ClientPacket> status, PacketRegistry<ClientPacket> login, PacketRegistry<ClientPacket> configuration, PacketRegistry<ClientPacket> play) extends Record implements PacketParser<ClientPacket>
  • Constructor Details

  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • handshake

      public PacketRegistry<ClientPacket> handshake()
      Returns the value of the handshake record component.
      Specified by:
      handshake in interface PacketParser<ClientPacket>
      Returns:
      the value of the handshake record component
    • status

      public PacketRegistry<ClientPacket> status()
      Returns the value of the status record component.
      Specified by:
      status in interface PacketParser<ClientPacket>
      Returns:
      the value of the status record component
    • login

      public PacketRegistry<ClientPacket> login()
      Returns the value of the login record component.
      Specified by:
      login in interface PacketParser<ClientPacket>
      Returns:
      the value of the login record component
    • configuration

      public PacketRegistry<ClientPacket> configuration()
      Returns the value of the configuration record component.
      Specified by:
      configuration in interface PacketParser<ClientPacket>
      Returns:
      the value of the configuration record component
    • play

      public PacketRegistry<ClientPacket> play()
      Returns the value of the play record component.
      Specified by:
      play in interface PacketParser<ClientPacket>
      Returns:
      the value of the play record component