Record Class ServerboundContainerSlotStateChangedPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ServerboundContainerSlotStateChangedPacket
- All Implemented Interfaces:
Packet<ServerGamePacketListener>
public record ServerboundContainerSlotStateChangedPacket(int slotId, int containerId, boolean newState)
extends Record
implements Packet<ServerGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thecontainerIdrecord component.private final booleanThe field for thenewStaterecord component.private final intThe field for theslotIdrecord component.static final StreamCodec<FriendlyByteBuf, ServerboundContainerSlotStateChangedPacket> -
Constructor Summary
ConstructorsModifierConstructorDescriptionServerboundContainerSlotStateChangedPacket(int slotId, int containerId, boolean newState) Creates an instance of aServerboundContainerSlotStateChangedPacketrecord class.private -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thecontainerIdrecord component.final booleanIndicates whether some other object is "equal to" this one.voidhandle(ServerGamePacketListener listener) final inthashCode()Returns a hash code value for this object.booleannewState()Returns the value of thenewStaterecord component.intslotId()Returns the value of theslotIdrecord component.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf output) Methods inherited from interface Packet
isSkippable, isTerminal
-
Field Details
-
slotId
private final int slotIdThe field for theslotIdrecord component. -
containerId
private final int containerIdThe field for thecontainerIdrecord component. -
newState
private final boolean newStateThe field for thenewStaterecord component. -
STREAM_CODEC
public static final StreamCodec<FriendlyByteBuf, ServerboundContainerSlotStateChangedPacket> STREAM_CODEC
-
-
Constructor Details
-
ServerboundContainerSlotStateChangedPacket
-
ServerboundContainerSlotStateChangedPacket
public ServerboundContainerSlotStateChangedPacket(int slotId, int containerId, boolean newState) Creates an instance of aServerboundContainerSlotStateChangedPacketrecord class.- Parameters:
slotId- the value for theslotIdrecord componentcontainerId- the value for thecontainerIdrecord componentnewState- the value for thenewStaterecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein interfacePacket<ServerGamePacketListener>
-
handle
- Specified by:
handlein interfacePacket<ServerGamePacketListener>
-
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. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
slotId
public int slotId()Returns the value of theslotIdrecord component.- Returns:
- the value of the
slotIdrecord component
-
containerId
public int containerId()Returns the value of thecontainerIdrecord component.- Returns:
- the value of the
containerIdrecord component
-
newState
public boolean newState()Returns the value of thenewStaterecord component.- Returns:
- the value of the
newStaterecord component
-