Record Class ClientPlayerPositionPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientPlayerPositionPacket
- All Implemented Interfaces:
ClientPacket
public record ClientPlayerPositionPacket(Point position, byte flags)
extends Record
implements ClientPacket
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final intstatic final NetworkBuffer.Type<ClientPlayerPositionPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientPlayerPositionPacket(Point position, boolean onGround, boolean horizontalCollision) ClientPlayerPositionPacket(Point position, byte flags) Creates an instance of aClientPlayerPositionPacketrecord 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
-
FLAG_ON_GROUND
public static final int FLAG_ON_GROUND- See Also:
-
FLAG_HORIZONTAL_COLLISION
public static final int FLAG_HORIZONTAL_COLLISION- See Also:
-
SERIALIZER
-
-
Constructor Details
-
ClientPlayerPositionPacket
-
ClientPlayerPositionPacket
Creates an instance of aClientPlayerPositionPacketrecord 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
-