Package | Description |
---|---|
jnr.ffi | |
jnr.ffi.provider.jffi |
Modifier and Type | Method and Description |
---|---|
static LibraryOption |
LibraryOption.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LibraryOption[] |
LibraryOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
Library.loadLibrary(Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions,
String... libraryNames)
Loads a native library and links the methods defined in
interfaceClass
to native methods in the library. |
abstract <T> T |
FFIProvider.loadLibrary(Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions,
String... libraryNames)
Loads a native library and links the methods defined in
interfaceClass
to native methods in the library. |
static <T> T |
Library.loadLibrary(String libraryName,
Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions)
Loads a native library and links the methods defined in
interfaceClass
to native methods in the library. |
abstract <T> T |
FFIProvider.loadLibrary(String libraryName,
Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions)
Loads a native library and links the methods defined in
interfaceClass
to native methods in the library. |
Modifier and Type | Method and Description |
---|---|
<T> T |
Provider.loadLibrary(Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions,
String... libraryNames) |
<T> T |
Provider.loadLibrary(String libraryName,
Class<T> interfaceClass,
Map<LibraryOption,?> libraryOptions) |
Copyright © 2013. All rights reserved.