Record Class ClientPlayerPositionAndRotationPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientPlayerPositionAndRotationPacket
- All Implemented Interfaces:
ClientPacket
public record ClientPlayerPositionAndRotationPacket(Pos position, byte flags)
extends Record
implements ClientPacket
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NetworkBuffer.Type<ClientPlayerPositionAndRotationPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientPlayerPositionAndRotationPacket(Pos position, boolean onGround, boolean horizontalCollision) ClientPlayerPositionAndRotationPacket(Pos position, byte flags) Creates an instance of aClientPlayerPositionAndRotationPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.byteflags()Returns the value of theflagsrecord component.final inthashCode()Returns a hash code value for this object.booleanbooleanonGround()position()Returns the value of thepositionrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientPlayerPositionAndRotationPacket
public ClientPlayerPositionAndRotationPacket(Pos position, boolean onGround, boolean horizontalCollision) -
ClientPlayerPositionAndRotationPacket
Creates an instance of aClientPlayerPositionAndRotationPacketrecord class.- Parameters:
position- the value for thepositionrecord componentflags- the value for theflagsrecord component
-
-
Method Details
-
onGround
public boolean onGround() -
horizontalCollision
public boolean horizontalCollision() -
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. -
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
flags
public byte flags()Returns the value of theflagsrecord component.- Returns:
- the value of the
flagsrecord component
-