Record Class BlockActionPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.BlockActionPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record BlockActionPacket(@NotNull Point blockPosition, byte actionId, byte actionParam, int blockId)
extends Record
implements ServerPacket.Play
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBlockActionPacket
(@NotNull Point blockPosition, byte actionId, byte actionParam, int blockId) Creates an instance of aBlockActionPacket
record class.BlockActionPacket
(Point blockPosition, byte actionId, byte actionParam, Block block) -
Method Summary
Modifier and TypeMethodDescriptionbyte
actionId()
Returns the value of theactionId
record component.byte
Returns the value of theactionParam
record component.int
blockId()
Returns the value of theblockId
record component.@NotNull Point
Returns the value of theblockPosition
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
BlockActionPacket
-
BlockActionPacket
public BlockActionPacket(@NotNull @NotNull Point blockPosition, byte actionId, byte actionParam, int blockId) Creates an instance of aBlockActionPacket
record class.- Parameters:
blockPosition
- the value for theblockPosition
record componentactionId
- the value for theactionId
record componentactionParam
- the value for theactionParam
record componentblockId
- the value for theblockId
record component
-
-
Method Details
-
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 thecompare
method from their corresponding wrapper classes. -
blockPosition
Returns the value of theblockPosition
record component.- Returns:
- the value of the
blockPosition
record component
-
actionId
public byte actionId()Returns the value of theactionId
record component.- Returns:
- the value of the
actionId
record component
-
actionParam
public byte actionParam()Returns the value of theactionParam
record component.- Returns:
- the value of the
actionParam
record component
-
blockId
public int blockId()Returns the value of theblockId
record component.- Returns:
- the value of the
blockId
record component
-