Uses of Annotation Interface
org.bytedeco.javacpp.annotation.Raw

Packages that use Raw
Package
Description
Contains the main set of classes for JavaCPP at runtime.
  • Uses of Raw in org.bytedeco.javacpp

    Methods in org.bytedeco.javacpp with annotations of type Raw
    Modifier and Type
    Method
    Description
    static Object
    Loader.Helper.accessGlobalRef(Pointer globalRef)
    Returns an Object from the JNI global reference stored in the Pointer.
    static void
    Loader.Helper.deleteGlobalRef(Pointer globalRef)
    Deletes the JNI global reference stored in the Pointer.
    static void
    Loader.Helper.loadGlobal(String filename)
    Loads all symbols from a library globally, that is dlopen(filename, RTLD_LAZY | RTLD_GLOBAL), or simply by default with LoadLibrary(filename) on Windows.
    Method parameters in org.bytedeco.javacpp with annotations of type Raw
    Modifier and Type
    Method
    Description
    protected static long
    Returns the starting address of the memory region referenced by the given direct Buffer.
    static Pointer
    Loader.Helper.newGlobalRef(Object object)
    Returns a JNI global reference stored in a Pointer for the given Object.