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
FieldsModifier and TypeFieldDescriptionstatic final NetworkBuffer.Type<ClientPlayerPositionAndRotationPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientPlayerPositionAndRotationPacket(@NotNull Pos position, boolean onGround, boolean horizontalCollision) ClientPlayerPositionAndRotationPacket(@NotNull 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()@NotNull Posposition()Returns the value of thepositionrecord component.final StringtoString()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 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
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 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
-