Class NkCommand

All Implemented Interfaces:
Pointer

public class NkCommand extends Struct<NkCommand>

Layout


 struct nk_command {
     enum nk_command_type type;
     nk_size next;
     nk_handle userdata;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
    • USERDATA

      public static final int USERDATA
      The struct member offsets.
  • Constructor Details

    • NkCommand

      public NkCommand(ByteBuffer container)
      Creates a NkCommand instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<NkCommand>
    • type

      public int type()
      Returns:
      the value of the type field.
    • next

      public long next()
      Returns:
      the value of the next field.
    • userdata

      public NkHandle userdata()
      Returns:
      a NkHandle view of the userdata field.
    • create

      public static NkCommand create(long address)
      Returns a new NkCommand instance for the specified memory address.
    • createSafe

      @Nullable public static NkCommand createSafe(long address)
      Like create, but returns null if address is NULL.
    • create

      public static NkCommand.Buffer create(long address, int capacity)
      Create a NkCommand.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      @Nullable public static NkCommand.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • ntype

      public static int ntype(long struct)
      Unsafe version of type().
    • nnext

      public static long nnext(long struct)
      Unsafe version of next().
    • nuserdata

      public static NkHandle nuserdata(long struct)
      Unsafe version of userdata().