public static enum CallingConvention.Type extends Enum<CallingConvention.Type>
Enum Constant and Description |
---|
JavaCall
A request for the outgoing argument locations at a call site to Java code.
|
JavaCallee
A request for the incoming argument locations.
|
NativeCall
A request for the outgoing argument locations at a call site to external native code that
complies with the platform ABI.
|
Modifier and Type | Field and Description |
---|---|
boolean |
out
Determines if this is a request for the outgoing argument locations at a call site.
|
static CallingConvention.Type[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
static CallingConvention.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallingConvention.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallingConvention.Type JavaCall
public static final CallingConvention.Type JavaCallee
public static final CallingConvention.Type NativeCall
public final boolean out
public static final CallingConvention.Type[] VALUES
public static CallingConvention.Type[] values()
for (CallingConvention.Type c : CallingConvention.Type.values()) System.out.println(c);
public static CallingConvention.Type 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 null