public static enum CEntryPoint.Publish extends Enum<CEntryPoint.Publish>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
NotPublished
Do not publish the entry point method.
|
SymbolAndHeader
Create a symbol for the entry point method in the native image, and if building a shared
library image, also include a C declaration in the generated C header file.
|
SymbolOnly
Create a symbol for the entry point method in the native image.
|
Modifier and Type | Method and Description |
---|---|
static CEntryPoint.Publish |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CEntryPoint.Publish[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CEntryPoint.Publish NotPublished
public static final CEntryPoint.Publish SymbolOnly
public static final CEntryPoint.Publish SymbolAndHeader
public static CEntryPoint.Publish[] values()
public static CEntryPoint.Publish 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