public static enum IMCFrame.Type extends java.lang.Enum<IMCFrame.Type>
Enum Constant and Description |
---|
INLINED
The frame was executed as code that was inlined by the Java JIT compiler.
|
INTERPRETED
The frame was executed as interpreted Java byte code.
|
JIT_COMPILED
The frame was executed as native code compiled by the Java JIT compiler.
|
UNKNOWN
The frame compilation type is unknown.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
name |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName() |
static IMCFrame.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMCFrame.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMCFrame.Type JIT_COMPILED
public static final IMCFrame.Type INTERPRETED
public static final IMCFrame.Type INLINED
public static final IMCFrame.Type UNKNOWN
public static IMCFrame.Type[] values()
for (IMCFrame.Type c : IMCFrame.Type.values()) System.out.println(c);
public static IMCFrame.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()