public static enum CEntryPointOptions.Publish extends Enum<CEntryPointOptions.Publish>
| 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 CEntryPointOptions.Publish |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CEntryPointOptions.Publish[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CEntryPointOptions.Publish NotPublished
public static final CEntryPointOptions.Publish SymbolOnly
public static final CEntryPointOptions.Publish SymbolAndHeader
public static CEntryPointOptions.Publish[] values()
public static CEntryPointOptions.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