Record Class ClientboundBlockBreakAckPacket

java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundBlockBreakAckPacket
All Implemented Interfaces:
Packet<ClientGamePacketListener>

public record ClientboundBlockBreakAckPacket(BlockPos pos, BlockState state, ServerboundPlayerActionPacket.Action action, boolean allGood) extends Record implements Packet<ClientGamePacketListener>
  • Field Details

    • pos

      private final BlockPos pos
      The field for the pos record component.
    • state

      private final BlockState state
      The field for the state record component.
    • action

      The field for the action record component.
    • allGood

      private final boolean allGood
      The field for the allGood record component.
    • LOGGER

      private static final org.slf4j.Logger LOGGER
  • Constructor Details

    • ClientboundBlockBreakAckPacket

      public ClientboundBlockBreakAckPacket(BlockPos p_131654_, BlockState p_131655_, ServerboundPlayerActionPacket.Action p_131656_, boolean p_131657_, String p_131658_)
    • ClientboundBlockBreakAckPacket

      public ClientboundBlockBreakAckPacket(BlockPos pos, BlockState state, ServerboundPlayerActionPacket.Action action, boolean allGood)
      Creates an instance of a ClientboundBlockBreakAckPacket record class.
      Parameters:
      pos - the value for the pos record component
      state - the value for the state record component
      action - the value for the action record component
      allGood - the value for the allGood record component
    • ClientboundBlockBreakAckPacket

      public ClientboundBlockBreakAckPacket(FriendlyByteBuf p_178604_)
  • Method Details

    • write

      public void write(FriendlyByteBuf p_131667_)
      Specified by:
      write in interface Packet<ClientGamePacketListener>
    • handle

      public void handle(ClientGamePacketListener p_131664_)
      Specified by:
      handle in interface Packet<ClientGamePacketListener>
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • pos

      public BlockPos pos()
      Returns the value of the pos record component.
      Returns:
      the value of the pos record component
    • state

      public BlockState state()
      Returns the value of the state record component.
      Returns:
      the value of the state record component
    • action

      Returns the value of the action record component.
      Returns:
      the value of the action record component
    • allGood

      public boolean allGood()
      Returns the value of the allGood record component.
      Returns:
      the value of the allGood record component