Serializable
, Comparable<CallingConvention>
public enum CallingConvention extends Enum<CallingConvention>
Enum Constant | Description |
---|---|
DEFAULT |
The default C calling convention
|
STDCALL |
Windows stdcall calling convention
|
Modifier and Type | Method | Description |
---|---|---|
static CallingConvention |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static CallingConvention[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallingConvention DEFAULT
public static final CallingConvention STDCALL
public static CallingConvention[] values()
for (CallingConvention c : CallingConvention.values()) System.out.println(c);
public static CallingConvention valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.