public enum InitKind extends Enum<InitKind>
InitKind.max(com.oracle.svm.hosted.classinitialization.InitKind) depends
on it.| Enum Constant and Description |
|---|
BUILD_TIME
Class is initialized during image building, so it is already initialized at runtime.
|
RERUN
Class is initialized both at runtime and during image building.
|
RUN_TIME
Class should be initialized at runtime and not during image building.
|
| Modifier and Type | Method and Description |
|---|---|
static InitKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InitKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InitKind BUILD_TIME
public static final InitKind RERUN
public static final InitKind RUN_TIME
public static final String SEPARATOR
public static InitKind[] values()
public static InitKind 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