public enum SubstrateCallingConventionKind extends Enum<SubstrateCallingConventionKind>
| Enum Constant and Description |
|---|
ForwardReturnValue
A method whose only parameter is passed in the register also used to return values.
|
Java
A Java-to-Java call.
|
Native
A call between Java and native code, which must use the platform ABI.
|
| Modifier and Type | Method and Description |
|---|---|
SubstrateCallingConventionType |
toType(boolean outgoing) |
static SubstrateCallingConventionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubstrateCallingConventionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstrateCallingConventionKind Java
public static final SubstrateCallingConventionKind ForwardReturnValue
public static final SubstrateCallingConventionKind Native
public static SubstrateCallingConventionKind[] values()
public static SubstrateCallingConventionKind 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 nullpublic SubstrateCallingConventionType toType(boolean outgoing)