Record Class ClientPlayerPositionAndRotationPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientPlayerPositionAndRotationPacket
- All Implemented Interfaces:
ClientPacket
public record ClientPlayerPositionAndRotationPacket(@NotNull Pos position, byte flags)
extends Record
implements ClientPacket
-
Field Summary
Modifier and TypeFieldDescriptionstatic final NetworkBuffer.Type
<ClientPlayerPositionAndRotationPacket> -
Constructor Summary
ConstructorDescriptionClientPlayerPositionAndRotationPacket
(@NotNull Pos position, boolean onGround, boolean horizontalCollision) ClientPlayerPositionAndRotationPacket
(@NotNull Pos position, byte flags) Creates an instance of aClientPlayerPositionAndRotationPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.byte
flags()
Returns the value of theflags
record component.final int
hashCode()
Returns a hash code value for this object.boolean
boolean
onGround()
@NotNull Pos
position()
Returns the value of theposition
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientPlayerPositionAndRotationPacket
public ClientPlayerPositionAndRotationPacket(@NotNull @NotNull Pos position, boolean onGround, boolean horizontalCollision) -
ClientPlayerPositionAndRotationPacket
Creates an instance of aClientPlayerPositionAndRotationPacket
record class.- Parameters:
position
- the value for theposition
record componentflags
- the value for theflags
record component
-
-
Method Details
-
onGround
public boolean onGround() -
horizontalCollision
public boolean horizontalCollision() -
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. -
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. -
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 '=='. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
flags
public byte flags()Returns the value of theflags
record component.- Returns:
- the value of the
flags
record component
-