public enum ExecutionTime extends Enum<ExecutionTime>
| Enum Constant and Description |
|---|
RUNTIME_INIT
The bytecode is run from a main method
|
STATIC_INIT
The bytecode is run from a generated static initializer
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionTime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionTime STATIC_INIT
public static final ExecutionTime RUNTIME_INIT
public static ExecutionTime[] values()
for (ExecutionTime c : ExecutionTime.values()) System.out.println(c);
public static ExecutionTime 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 JBoss by Red Hat. All rights reserved.