public static enum IMCFrame.Type extends 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 | Method and Description |
---|---|
String |
getName() |
static IMCFrame.Type |
valueOf(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(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 nullpublic String getName()
Copyright © 2019. All rights reserved.