Top Deprecated
jnr-ffi 2.2.14

Deprecated API


No API in this release is deprecated for removal.

Deprecated Item Summary

SinceDeprecated Item and Description
jnr.ffi.Library.addLibraryPath(String
the name of the library to search for
libraryName
,
File
the path to search for the library in
path
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

A List of String instances.
jnr.ffi.Library.getLibraryPath
(String
The library to retrieve the path for.
libraryName
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

The runtime that loaded the library.
jnr.ffi.Library.getRuntime
(Object
A library implementation as returned from LibraryLoader#load()
library
)

Use Runtime#getRuntime(Object)

Returns:

an instance of interfaceclass that will call the native methods.
jnr.ffi.Library.loadLibrary
(String
the name of the library to load
libraryName
,
Class<T>
the interface that describes the native library interface
interfaceClass
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

an instance of interfaceclass that will call the native methods.
jnr.ffi.Library.loadLibrary
(Class<T>
the interface that describes the native library interface
interfaceClass
,
String...
the name of the library to load
libraryNames
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

an instance of interfaceclass that will call the native methods.
jnr.ffi.Library.loadLibrary
(String
the name of the library to load
libraryName
,
Class<T>
the interface that describes the native library interface
interfaceClass
,
Map<LibraryOption, ?>
options
libraryOptions
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

an instance of interfaceclass that will call the native methods.
jnr.ffi.Library.loadLibrary
(Class<T>
the interface that describes the native library interface
interfaceClass
,
Map<LibraryOption, ?>
options
libraryOptions
,
String...
the name of the library to load
libraryNames
)

see LibraryLoader for the preferred interface to loading libraries.

Returns:

The java object corresponding to pointer.
jnr.ffi.ObjectReferenceManager.getObject
(Pointer
a native memory pointer.
reference
)

use get(Pointer)

Returns:

A pointer representing the unique id.
jnr.ffi.ObjectReferenceManager.newReference
(T
The java object to generate a reference for
object
)

use add(Object)

Returns:

the size of a pointer in bits
jnr.ffi.Platform.addressSize
()

Use Runtime#addressSize() instead.

Returns:

the size of a long in bits
jnr.ffi.Platform.longSize
()

Use Runtime#longSize() instead.

jnr.ffi.provider.jffi.NativeFunctionMapperContext.getLibrary()

Deprecated as a consequence of Library being deprecated. See corresponding docs for further information.