Record Class SlotChangedStateC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.play.SlotChangedStateC2SPacket
- Record Components:
slotId-screenHandlerId-newState-
- All Implemented Interfaces:
Packet<ServerPlayPacketListener>
public record SlotChangedStateC2SPacket(int slotId, int screenHandlerId, boolean newState)
extends Record
implements Packet<ServerPlayPacketListener>
- Mappings:
Namespace Name official aeaintermediary net/minecraft/class_8875named net/minecraft/network/packet/c2s/play/SlotChangedStateC2SPacketofficial aintermediary comp_1998named slotIdofficial bintermediary comp_1999named screenHandlerIdofficial cintermediary comp_2000named newState
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for thenewStaterecord component.private final intThe field for thescreenHandlerIdrecord component.private final intThe field for theslotIdrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerPlayPacketListener serverPlayPacketListener) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleannewState()Returns the value of thenewStaterecord component.intReturns the value of thescreenHandlerIdrecord component.intslotId()Returns the value of theslotIdrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.Packet
getNewNetworkState, isWritingErrorSkippable
-
Field Details
-
slotId
private final int slotIdThe field for theslotIdrecord component. -
screenHandlerId
private final int screenHandlerIdThe field for thescreenHandlerIdrecord component. -
newState
private final boolean newStateThe field for thenewStaterecord component.
-
-
Constructor Details
-
SlotChangedStateC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>Laea;<init>(Lui;)Vintermediary <init>Lnet/minecraft/class_8875;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/c2s/play/SlotChangedStateC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
SlotChangedStateC2SPacket
public SlotChangedStateC2SPacket(int int2, int int3, boolean bool)
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLxf;a(Lui;)Vintermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLaea;a(Ladj;)Vintermediary method_54437Lnet/minecraft/class_8875;method_54437(Lnet/minecraft/class_2792;)Vnamed applyLnet/minecraft/network/packet/c2s/play/SlotChangedStateC2SPacket;apply(Lnet/minecraft/network/listener/ServerPlayPacketListener;)V
-
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. -
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. -
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 '=='. -
slotId
public int slotId()Returns the value of theslotIdrecord component.- Returns:
- the value of the
slotIdrecord component
-
screenHandlerId
public int screenHandlerId()Returns the value of thescreenHandlerIdrecord component.- Returns:
- the value of the
screenHandlerIdrecord component
-
newState
public boolean newState()Returns the value of thenewStaterecord component.- Returns:
- the value of the
newStaterecord component
-