public enum TeaVMPhase extends Enum<TeaVMPhase>
| Enum Constant and Description |
|---|
DECOMPILATION |
DEPENDENCY_CHECKING |
DEVIRTUALIZATION |
LINKING |
RENDERING |
| Modifier and Type | Method and Description |
|---|---|
static TeaVMPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TeaVMPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeaVMPhase DEPENDENCY_CHECKING
public static final TeaVMPhase LINKING
public static final TeaVMPhase DEVIRTUALIZATION
public static final TeaVMPhase DECOMPILATION
public static final TeaVMPhase RENDERING
public static TeaVMPhase[] values()
for (TeaVMPhase c : TeaVMPhase.values()) System.out.println(c);
public static TeaVMPhase 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 © 2015. All rights reserved.