Record Class ClientboundPlayerPositionPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundPlayerPositionPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundPlayerPositionPacket(int id, PositionMoveRotation change, Set<Relative> relatives)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final PositionMoveRotationThe field for thechangerecord component.private final intThe field for theidrecord component.The field for therelativesrecord component.static final StreamCodec<FriendlyByteBuf, ClientboundPlayerPositionPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientboundPlayerPositionPacket(int id, PositionMoveRotation change, Set<Relative> relatives) Creates an instance of aClientboundPlayerPositionPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionchange()Returns the value of thechangerecord component.final booleanIndicates whether some other object is "equal to" this one.voidhandle(ClientGamePacketListener pHandler) Passes this Packet on to the NetHandler for processing.final inthashCode()Returns a hash code value for this object.intid()Returns the value of theidrecord component.of(int pId, PositionMoveRotation pPositionMoveRotation, Set<Relative> pRelativeArguments) Returns the value of therelativesrecord component.final StringtoString()Returns a string representation of this record class.type()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, isTerminal
-
Field Details
-
id
private final int idThe field for theidrecord component. -
change
The field for thechangerecord component. -
relatives
The field for therelativesrecord component. -
STREAM_CODEC
-
-
Constructor Details
-
ClientboundPlayerPositionPacket
public ClientboundPlayerPositionPacket(int id, PositionMoveRotation change, Set<Relative> relatives) Creates an instance of aClientboundPlayerPositionPacketrecord class.- Parameters:
id- the value for theidrecord componentchange- the value for thechangerecord componentrelatives- the value for therelativesrecord component
-
-
Method Details
-
of
public static ClientboundPlayerPositionPacket of(int pId, PositionMoveRotation pPositionMoveRotation, Set<Relative> pRelativeArguments) -
type
- Specified by:
typein interfacePacket<ClientGamePacketListener>
-
handle
Passes this Packet on to the NetHandler for processing.- Specified by:
handlein interfacePacket<ClientGamePacketListener>
-
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 '=='. -
id
public int id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
change
Returns the value of thechangerecord component.- Returns:
- the value of the
changerecord component
-
relatives
Returns the value of therelativesrecord component.- Returns:
- the value of the
relativesrecord component
-