|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Convention.Style>
org.bridj.ann.Convention.Style
public static enum Convention.Style
Calling convention enums
Enum Constant Summary | |
---|---|
CDecl
__cdecl convention (default for regular C functions) |
|
CLRCall
__clrcall convention (not supported, specific to Windows .NET mixed-mode assemblies) |
|
FastCall
__fastcall convention |
|
Pascal
|
|
StdCall
__stdcall convention (specific to Windows x86, won't have any effect on other platforms) |
|
ThisCall
__thiscall convention (default for regular C++ methods) |
Method Summary | |
---|---|
static Convention.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Convention.Style[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Convention.Style StdCall
public static final Convention.Style FastCall
public static final Convention.Style CDecl
public static final Convention.Style Pascal
public static final Convention.Style CLRCall
public static final Convention.Style ThisCall
Method Detail |
---|
public static Convention.Style[] values()
for (Convention.Style c : Convention.Style.values()) System.out.println(c);
public static Convention.Style valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |