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 SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for thecontainerIdrecord component.private final booleanThe field for thenewStaterecord component.private final intThe field for theslotIdrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionServerboundContainerSlotStateChangedPacket(int slotId, int containerId, boolean newState) Creates an instance of aServerboundContainerSlotStateChangedPacketrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the value of thecontainerIdrecord component.final booleanIndicates whether some other object is "equal to" this one.voidhandle(ServerGamePacketListener p_307397_) 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.voidwrite(FriendlyByteBuf p_307330_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, nextProtocol
- 
Field Details- 
slotIdprivate final int slotIdThe field for theslotIdrecord component.
- 
containerIdprivate final int containerIdThe field for thecontainerIdrecord component.
- 
newStateprivate final boolean newStateThe field for thenewStaterecord component.
 
- 
- 
Constructor Details- 
ServerboundContainerSlotStateChangedPacket
- 
ServerboundContainerSlotStateChangedPacketpublic ServerboundContainerSlotStateChangedPacket(int slotId, int containerId, boolean newState) Creates an instance of aServerboundContainerSlotStateChangedPacketrecord class.- Parameters:
- slotId- the value for the- slotIdrecord component
- containerId- the value for the- containerIdrecord component
- newState- the value for the- newStaterecord component
 
 
- 
- 
Method Details- 
write- Specified by:
- writein interface- Packet<ServerGamePacketListener>
 
- 
handle- Specified by:
- handlein interface- Packet<ServerGamePacketListener>
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
slotIdpublic int slotId()Returns the value of theslotIdrecord component.- Returns:
- the value of the slotIdrecord component
 
- 
containerIdpublic int containerId()Returns the value of thecontainerIdrecord component.- Returns:
- the value of the containerIdrecord component
 
- 
newStatepublic boolean newState()Returns the value of thenewStaterecord component.- Returns:
- the value of the newStaterecord component
 
 
-