Package org.lwjgl.system.libffi
Class FFIType.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<FFIType,FFIType.Buffer>
-
- org.lwjgl.system.libffi.FFIType.Buffer
-
- All Implemented Interfaces:
java.lang.AutoCloseable,java.lang.Iterable<FFIType>,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
- Enclosing class:
- FFIType
public static class FFIType.Buffer extends org.lwjgl.system.StructBuffer<FFIType,FFIType.Buffer> implements org.lwjgl.system.NativeResource
An array ofFFITypestructs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortalignment()FFIType.Bufferalignment(short value)Sets the specified value to theFFIType.alignment()field.org.lwjgl.PointerBufferelements(int capacity)FFIType.Bufferelements(org.lwjgl.PointerBuffer value)Sets the address of the specifiedPointerBufferto theFFIType.elements(int)field.longsize()FFIType.Buffersize(long value)Sets the specified value to theFFIType.size()field.shorttype()FFIType.Buffertype(short value)Sets the specified value to theFFIType.type()field.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newFFIType.Bufferinstance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byFFIType.SIZEOF, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
size
public long size()
- Returns:
- the value of the
FFIType.size()field.
-
alignment
public short alignment()
- Returns:
- the value of the
FFIType.alignment()field.
-
type
public short type()
- Returns:
- the value of the
FFIType.type()field.
-
elements
@Nullable public org.lwjgl.PointerBuffer elements(int capacity)
- Parameters:
capacity- the number of elements in the returned buffer- Returns:
- a
PointerBufferview of the data pointed to by theFFIType.elements(int)field.
-
size
public FFIType.Buffer size(long value)
Sets the specified value to theFFIType.size()field.
-
alignment
public FFIType.Buffer alignment(short value)
Sets the specified value to theFFIType.alignment()field.
-
type
public FFIType.Buffer type(short value)
Sets the specified value to theFFIType.type()field.
-
elements
public FFIType.Buffer elements(@Nullable org.lwjgl.PointerBuffer value)
Sets the address of the specifiedPointerBufferto theFFIType.elements(int)field.
-
-