Record Class PacketReading.ParsedPacket<T>
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.PacketReading.ParsedPacket<T>
- Enclosing class:
PacketReading
public static record PacketReading.ParsedPacket<T>(ConnectionState nextState, T packet)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionParsedPacket(ConnectionState nextState, T packet) Creates an instance of aParsedPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thenextStaterecord component.packet()Returns the value of thepacketrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ParsedPacket
Creates an instance of aParsedPacketrecord class.- Parameters:
nextState- the value for thenextStaterecord componentpacket- the value for thepacketrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
nextState
Returns the value of thenextStaterecord component.- Returns:
- the value of the
nextStaterecord component
-
packet
Returns the value of thepacketrecord component.- Returns:
- the value of the
packetrecord component
-