Record Class ClientboundEntityPositionSyncPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundEntityPositionSyncPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundEntityPositionSyncPacket(int id, PositionMoveRotation values, boolean onGround)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
The field for theid
record component.private final boolean
The field for theonGround
record component.static final StreamCodec
<FriendlyByteBuf, ClientboundEntityPositionSyncPacket> private final PositionMoveRotation
The field for thevalues
record component. -
Constructor Summary
ConstructorsConstructorDescriptionClientboundEntityPositionSyncPacket
(int id, PositionMoveRotation values, boolean onGround) Creates an instance of aClientboundEntityPositionSyncPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientGamePacketListener p_379993_) final int
hashCode()
Returns a hash code value for this object.int
id()
Returns the value of theid
record component.boolean
onGround()
Returns the value of theonGround
record component.final String
toString()
Returns a string representation of this record class.type()
values()
Returns the value of thevalues
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, isTerminal
-
Field Details
-
id
private final int idThe field for theid
record component. -
values
The field for thevalues
record component. -
onGround
private final boolean onGroundThe field for theonGround
record component. -
STREAM_CODEC
-
-
Constructor Details
-
ClientboundEntityPositionSyncPacket
Creates an instance of aClientboundEntityPositionSyncPacket
record class.- Parameters:
id
- the value for theid
record componentvalues
- the value for thevalues
record componentonGround
- the value for theonGround
record component
-
-
Method Details
-
of
-
type
- Specified by:
type
in interfacePacket<ClientGamePacketListener>
-
handle
- Specified by:
handle
in 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 theid
record component.- Returns:
- the value of the
id
record component
-
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-
onGround
public boolean onGround()Returns the value of theonGround
record component.- Returns:
- the value of the
onGround
record component
-