Package org.lwjgl.system
Class SharedLibrary.Default
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.SharedLibrary.Default
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,FunctionProvider
,NativeResource
,Pointer
,SharedLibrary
- Direct Known Subclasses:
LinuxLibrary
,MacOSXLibrary
,WindowsLibrary
- Enclosing interface:
- SharedLibrary
public abstract static class SharedLibrary.Default extends Pointer.Default implements SharedLibrary
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.lwjgl.system.SharedLibrary
SharedLibrary.Default, SharedLibrary.Delegate
-
-
Field Summary
-
Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Returns the library name.java.lang.String
getPath()
Returns the library path, if available.-
Methods inherited from interface org.lwjgl.system.FunctionProvider
getFunctionAddress, getFunctionAddress
-
Methods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:SharedLibrary
Returns the library name.- Specified by:
getName
in interfaceSharedLibrary
-
getPath
@Nullable public java.lang.String getPath()
Description copied from interface:SharedLibrary
Returns the library path, if available.- Specified by:
getPath
in interfaceSharedLibrary
- Returns:
- the library path, or
null
if the path is not available.
-
-