Package org.openjdk.jmh.runner
Enum CompilerHints.BlackholeSelect
- java.lang.Object
-
- java.lang.Enum<CompilerHints.BlackholeSelect>
-
- org.openjdk.jmh.runner.CompilerHints.BlackholeSelect
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CompilerHints.BlackholeSelect>
- Enclosing class:
- CompilerHints
private static enum CompilerHints.BlackholeSelect extends java.lang.Enum<CompilerHints.BlackholeSelect>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
desc
-
Constructor Summary
Constructors Modifier Constructor Description private
BlackholeSelect(java.lang.String desc)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
desc()
static CompilerHints.BlackholeSelect
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompilerHints.BlackholeSelect[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final CompilerHints.BlackholeSelect AUTO
-
FALLBACK
public static final CompilerHints.BlackholeSelect FALLBACK
-
FORCED
public static final CompilerHints.BlackholeSelect FORCED
-
-
Method Detail
-
values
public static CompilerHints.BlackholeSelect[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CompilerHints.BlackholeSelect c : CompilerHints.BlackholeSelect.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompilerHints.BlackholeSelect valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
desc
public java.lang.String desc()
-
-