Record Class ServerboundSelectBundleItemPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ServerboundSelectBundleItemPacket
- All Implemented Interfaces:
Packet<ServerGamePacketListener>
public record ServerboundSelectBundleItemPacket(int slotId, int selectedItemIndex)
extends Record
implements Packet<ServerGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for theselectedItemIndexrecord component.private final intThe field for theslotIdrecord component.static final StreamCodec<FriendlyByteBuf, ServerboundSelectBundleItemPacket> -
Constructor Summary
ConstructorsModifierConstructorDescriptionServerboundSelectBundleItemPacket(int slotId, int selectedItemIndex) Creates an instance of aServerboundSelectBundleItemPacketrecord class.private -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidhandle(ServerGamePacketListener listener) Passes this Packet on to the PacketListener for processing.final inthashCode()Returns a hash code value for this object.intReturns the value of theselectedItemIndexrecord 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. -
selectedItemIndex
private final int selectedItemIndexThe field for theselectedItemIndexrecord component. -
STREAM_CODEC
-
-
Constructor Details
-
ServerboundSelectBundleItemPacket
-
ServerboundSelectBundleItemPacket
public ServerboundSelectBundleItemPacket(int slotId, int selectedItemIndex) Creates an instance of aServerboundSelectBundleItemPacketrecord class.- Parameters:
slotId- the value for theslotIdrecord componentselectedItemIndex- the value for theselectedItemIndexrecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein interfacePacket<ServerGamePacketListener>
-
handle
Description copied from interface:PacketPasses this Packet on to the PacketListener for processing.- 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
-
selectedItemIndex
public int selectedItemIndex()Returns the value of theselectedItemIndexrecord component.- Returns:
- the value of the
selectedItemIndexrecord component
-