public static enum CompilerControl.Mode extends Enum<CompilerControl.Mode>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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, in
the order they are declared.
|
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
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 constant with the specified nameNullPointerException
- if the argument is nullpublic String command()
Copyright © 2012-2016 Oracle. All Rights Reserved.