Class AIPropertyStore

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class AIPropertyStore
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Represents an opaque set of settings to be used during importing.

    Layout

    
     struct aiPropertyStore {
         char sentinel;
     }
    • Field Detail

      • SIZEOF

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

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

        public static final int SENTINEL
        The struct member offsets.
    • Constructor Detail

      • AIPropertyStore

        public AIPropertyStore​(java.nio.ByteBuffer container)
        Creates a AIPropertyStore 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 Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • sentinel

        public byte sentinel()
        Returns:
        the value of the sentinel field.
      • sentinel

        public AIPropertyStore sentinel​(byte value)
        Sets the specified value to the sentinel field.
      • set

        public AIPropertyStore set​(AIPropertyStore src)
        Copies the specified struct data to this struct.
        Parameters:
        src - the source struct
        Returns:
        this struct
      • malloc

        public static AIPropertyStore malloc()
        Returns a new AIPropertyStore instance allocated with memAlloc. The instance must be explicitly freed.
      • calloc

        public static AIPropertyStore calloc()
        Returns a new AIPropertyStore instance allocated with memCalloc. The instance must be explicitly freed.
      • create

        public static AIPropertyStore create()
        Returns a new AIPropertyStore instance allocated with BufferUtils.
      • create

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

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

        public static AIPropertyStore.Buffer malloc​(int capacity)
        Returns a new AIPropertyStore.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • calloc

        public static AIPropertyStore.Buffer calloc​(int capacity)
        Returns a new AIPropertyStore.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • create

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

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

        @Deprecated
        public static AIPropertyStore mallocStack​(org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
      • callocStack

        @Deprecated
        public static AIPropertyStore callocStack​(org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
      • malloc

        public static AIPropertyStore malloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new AIPropertyStore instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • calloc

        public static AIPropertyStore calloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new AIPropertyStore instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
      • malloc

        public static AIPropertyStore.Buffer malloc​(int capacity,
                                                    org.lwjgl.system.MemoryStack stack)
        Returns a new AIPropertyStore.Buffer instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • calloc

        public static AIPropertyStore.Buffer calloc​(int capacity,
                                                    org.lwjgl.system.MemoryStack stack)
        Returns a new AIPropertyStore.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • nsentinel

        public static byte nsentinel​(long struct)
        Unsafe version of sentinel().
      • nsentinel

        public static void nsentinel​(long struct,
                                     byte value)
        Unsafe version of sentinel.