public static enum CEntryPoint.Builtin extends Enum<CEntryPoint.Builtin>
| Enum Constant and Description |
|---|
AttachThread
The annotated method attaches the current thread to an isolate.
|
CreateIsolate
The annotated method creates an isolate.
|
CurrentIsolate
The annotated method returns the
Isolate for an IsolateThread which
represents the current thread. |
CurrentThread
The annotated method returns the
IsolateThread of the current thread in a
specified Isolate. |
DetachThread
The annotated method detaches the current thread, given as an
IsolateThread, from
an isolate. |
NoBuiltin
The annotated method is not an alias for a built-in method.
|
TearDownIsolate
The annotated method tears down the specified isolate.
|
| Modifier and Type | Method and Description |
|---|---|
static CEntryPoint.Builtin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CEntryPoint.Builtin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CEntryPoint.Builtin NoBuiltin
public static final CEntryPoint.Builtin CreateIsolate
Isolate. In case of an error,
NULL is returned.public static final CEntryPoint.Builtin AttachThread
Isolate with the isolate to attach to, and a return type of
IsolateThread. In case of an error, NULL is
returned.public static final CEntryPoint.Builtin CurrentThread
IsolateThread of the current thread in a
specified Isolate. It requires a parameter of type Isolate for the
isolate in question, and a return type of IsolateThread. In case of an error,
NULL is returned.public static final CEntryPoint.Builtin CurrentIsolate
Isolate for an IsolateThread which
represents the current thread. It requires a parameter of type IsolateThread, and
a return type of Isolate. In case of an error, NULL is returned.public static final CEntryPoint.Builtin DetachThread
IsolateThread, from
an isolate. It requires a parameter of type IsolateThread, and a return type of
int or void. With an int return type, zero is returned when
successful, or non-zero in case of an error.public static final CEntryPoint.Builtin TearDownIsolate
Isolate, and a return type of int or void. With an int
return type, zero is returned when successful, or non-zero in case of an error.public static CEntryPoint.Builtin[] values()
public static CEntryPoint.Builtin 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