Package org.openjdk.jmh.annotations
Enum CompilerControl.Mode
- All Implemented Interfaces:
Serializable
,Comparable<CompilerControl.Mode>
,java.lang.constant.Constable
- Enclosing class:
CompilerControl
Compilation mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInsert the breakpoint into the generated compiled code.Compile only this method, and nothing else.Force skip inline.Exclude the method from the compilation.Force inline.Print the method and it's profile. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncommand()
static CompilerControl.Mode
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.
-
Enum Constant Details
-
BREAK
Insert the breakpoint into the generated compiled code. -
PRINT
Print the method and it's profile. -
EXCLUDE
Exclude the method from the compilation. -
INLINE
Force inline. -
DONT_INLINE
Force skip inline. -
COMPILE_ONLY
Compile only this method, and nothing else.
-
-
Field Details
-
command
-
-
Constructor Details
-
Mode
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
command
-