com.kenai.jaffl
public class LibraryOption extends Enum<LibraryOption>
Field Summary | |
---|---|
static LibraryOption | CallingConvention
The type of calling convention. |
static LibraryOption | FunctionMapper
A function mapper which maps from java function names to native function names. |
static LibraryOption | IgnoreError
Function calls should NOT save the errno/last error after the call.
|
static LibraryOption | LoadNow
Load the library into memory immediately, instead of lazily loading it |
static LibraryOption | SaveError
Function calls should save the errno/last error after the call.
|
static LibraryOption | TypeMapper
A type mapper which maps java types to native types is present. |
static List<LibraryOption> | VALUES An immutable list containing the values comprising this enum class in the order they're declared. |
Method Summary | |
---|---|
List<LibraryOption> | family() Returns an immutable list containing the values comprising this enum class in the order they're declared. |
static LibraryOption | valueOf(String name) Static factory to return the enum constant pertaining to the given string name. |
See Also: CallingConvention
for(LibraryOption c : LibraryOption.VALUES) System.out.println(c);
VALUES
. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES
.Returns: an immutable list containing the values comprising this enum class, in the order they're declared.
Throws: IllegalArgumentException if this enum class has no constant with the specified name.