Record Class AdvancedOpenScreenPayload

java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.AdvancedOpenScreenPayload
Record Components:
windowId - The window ID to use for the screen.
menuType - The menu type to open.
name - The name of the screen.
additionalData - The additional data to pass to the screen.
All Implemented Interfaces:
net.minecraft.network.protocol.common.custom.CustomPacketPayload, ClientDispatchPayload

@Internal public record AdvancedOpenScreenPayload(int windowId, net.minecraft.world.inventory.MenuType<?> menuType, net.minecraft.network.chat.Component name, byte[] additionalData) extends Record implements ClientDispatchPayload
A custom payload that allows for opening screens with additional data.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload

    net.minecraft.network.protocol.common.custom.CustomPacketPayload.FallbackProvider<B extends net.minecraft.network.FriendlyByteBuf>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<T extends net.minecraft.network.protocol.common.custom.CustomPacketPayload>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.TypeAndCodec<B extends net.minecraft.network.FriendlyByteBuf,T extends net.minecraft.network.protocol.common.custom.CustomPacketPayload>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final byte[]
    The field for the additionalData record component.
    private final net.minecraft.world.inventory.MenuType<?>
    The field for the menuType record component.
    private final net.minecraft.network.chat.Component
    The field for the name record component.
    static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,AdvancedOpenScreenPayload>
     
    static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<AdvancedOpenScreenPayload>
     
    private final int
    The field for the windowId record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    AdvancedOpenScreenPayload(int windowId, net.minecraft.world.inventory.MenuType<?> menuType, net.minecraft.network.chat.Component name, byte[] additionalData)
    Creates an instance of a AdvancedOpenScreenPayload record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    Returns the value of the additionalData record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    net.minecraft.world.inventory.MenuType<?>
    Returns the value of the menuType record component.
    net.minecraft.network.chat.Component
    Returns the value of the name record component.
    final String
    Returns a string representation of this record class.
    net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<AdvancedOpenScreenPayload>
     
    int
    Returns the value of the windowId record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload

    toVanillaClientbound, toVanillaServerbound
  • Field Details

    • windowId

      private final int windowId
      The field for the windowId record component.
    • name

      private final net.minecraft.network.chat.Component name
      The field for the name record component.
    • additionalData

      private final byte[] additionalData
      The field for the additionalData record component.
    • TYPE

      public static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<AdvancedOpenScreenPayload> TYPE
    • STREAM_CODEC

      public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,AdvancedOpenScreenPayload> STREAM_CODEC
  • Constructor Details

    • AdvancedOpenScreenPayload

      public AdvancedOpenScreenPayload(int windowId, net.minecraft.world.inventory.MenuType<?> menuType, net.minecraft.network.chat.Component name, byte[] additionalData)
      Creates an instance of a AdvancedOpenScreenPayload record class.
      Parameters:
      windowId - the value for the windowId record component
      menuType - the value for the menuType record component
      name - the value for the name record component
      additionalData - the value for the additionalData record component
  • Method Details

    • type

      public net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<AdvancedOpenScreenPayload> type()
      Specified by:
      type in interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
    • 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.
    • windowId

      public int windowId()
      Returns the value of the windowId record component.
      Returns:
      the value of the windowId record component
    • name

      public net.minecraft.network.chat.Component name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • additionalData

      public byte[] additionalData()
      Returns the value of the additionalData record component.
      Returns:
      the value of the additionalData record component