public enum AotRuntime extends Enum<AotRuntime>
Modifier and Type | Method and Description |
---|---|
static AotRuntime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AotRuntime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AotRuntime JIT
public static final AotRuntime NATIVE
public static AotRuntime[] values()
for (AotRuntime c : AotRuntime.values()) System.out.println(c);
public static AotRuntime 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 nullCopyright © 2020–2023 Micronaut. All rights reserved.