Package org.lwjgl.nuklear
Class NkCommand
- All Implemented Interfaces:
Pointer
struct nk_command {
enum nk_command_type type;
nk_size next;
nk_handle userdata;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionNkCommand(ByteBuffer container) Creates aNkCommandinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic NkCommandcreate(long address) Returns a newNkCommandinstance for the specified memory address.static NkCommand.Buffercreate(long address, int capacity) Create aNkCommand.Bufferinstance at the specified memory.static @Nullable NkCommandcreateSafe(long address) static @Nullable NkCommand.BuffercreateSafe(long address, int capacity) longnext()static longnnext(long struct) Unsafe version ofnext().static intntype(long struct) Unsafe version oftype().static NkHandlenuserdata(long struct) Unsafe version ofuserdata().intsizeof()Returnssizeof(struct).inttype()userdata()Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
TYPE
public static final int TYPEThe struct member offsets. -
NEXT
public static final int NEXTThe struct member offsets. -
USERDATA
public static final int USERDATAThe struct member offsets.
-
-
Constructor Details
-
NkCommand
Creates aNkCommandinstance at the current position of the specifiedByteBuffercontainer. 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:StructReturnssizeof(struct). -
type
public int type()- Returns:
- the value of the
typefield.
-
next
public long next()- Returns:
- the value of the
nextfield.
-
userdata
- Returns:
- a
NkHandleview of theuserdatafield.
-
create
Returns a newNkCommandinstance for the specified memory address. -
createSafe
-
create
Create aNkCommand.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
ntype
public static int ntype(long struct) Unsafe version oftype(). -
nnext
public static long nnext(long struct) Unsafe version ofnext(). -
nuserdata
Unsafe version ofuserdata().
-