| ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CompilerControl.Mode>
org.openjdk.jmh.annotations.CompilerControl.Mode
public static enum CompilerControl.Mode
Compilation mode.
Enum Constant Summary | |
---|---|
BREAK Insert the breakpoint into the generated compiled code. | |
COMPILE_ONLY Compile only this method, and nothing else. | |
DONT_INLINE Force skip inline. | |
EXCLUDE Exclude the method from the compilation. | |
INLINE Force inline. | |
PRINT Print the method and it's profile. |
Method Summary | |
---|---|
String | command() |
static CompilerControl.Mode | valueOf(String name) Returns the enum constant of this type with the specified name. |
static CompilerControl.Mode[] | values() Returns an array containing the constants of this enum type, inthe order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CompilerControl.Mode BREAK
public static final CompilerControl.Mode PRINT
public static final CompilerControl.Mode EXCLUDE
public static final CompilerControl.Mode INLINE
public static final CompilerControl.Mode DONT_INLINE
public static final CompilerControl.Mode COMPILE_ONLY
Method Detail |
---|
public static CompilerControl.Mode[] values()
for (CompilerControl.Mode c : CompilerControl.Mode.values()) System.out.println(c);
public static CompilerControl.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constantwith the specified nameNullPointerException
- if the argument is nullpublic String command()
| ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |