Class ServerboundSetCommandBlockPacket

java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.ingame.serverbound.inventory.ServerboundSetCommandBlockPacket
All Implemented Interfaces:
Packet, MinecraftPacket

public class ServerboundSetCommandBlockPacket extends Object implements MinecraftPacket
  • Constructor Details

    • ServerboundSetCommandBlockPacket

      public ServerboundSetCommandBlockPacket(io.netty.buffer.ByteBuf in, MinecraftCodecHelper helper)
    • ServerboundSetCommandBlockPacket

      public ServerboundSetCommandBlockPacket(@NonNull @NonNull org.cloudburstmc.math.vector.Vector3i position, @NonNull @NonNull String command, @NonNull @NonNull CommandBlockMode mode, boolean doesTrackOutput, boolean conditional, boolean automatic)
  • Method Details

    • serialize

      public void serialize(io.netty.buffer.ByteBuf out, MinecraftCodecHelper helper)
      Specified by:
      serialize in interface MinecraftPacket
    • getPosition

      @NonNull public @NonNull org.cloudburstmc.math.vector.Vector3i getPosition()
    • getCommand

      @NonNull public @NonNull String getCommand()
    • getMode

      @NonNull public @NonNull CommandBlockMode getMode()
    • isDoesTrackOutput

      public boolean isDoesTrackOutput()
    • isConditional

      public boolean isConditional()
    • isAutomatic

      public boolean isAutomatic()
    • equals

      public boolean equals(@Nullable Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(@Nullable Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public @NonNull String toString()
      Overrides:
      toString in class Object
    • withPosition

      public @NonNull ServerboundSetCommandBlockPacket withPosition(@NonNull @NonNull org.cloudburstmc.math.vector.Vector3i position)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).
    • withCommand

      public @NonNull ServerboundSetCommandBlockPacket withCommand(@NonNull @NonNull String command)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).
    • withMode

      public @NonNull ServerboundSetCommandBlockPacket withMode(@NonNull @NonNull CommandBlockMode mode)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).
    • withDoesTrackOutput

      public @NonNull ServerboundSetCommandBlockPacket withDoesTrackOutput(boolean doesTrackOutput)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).
    • withConditional

      public @NonNull ServerboundSetCommandBlockPacket withConditional(boolean conditional)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).
    • withAutomatic

      public @NonNull ServerboundSetCommandBlockPacket withAutomatic(boolean automatic)
      Returns:
      a clone of this object, except with this updated property (returns this if an identical value is passed).