Package org.openjdk.jmh.runner
Enum ActionMode
- All Implemented Interfaces:
Serializable
,Comparable<ActionMode>
,java.lang.constant.Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDo measurement only.No action.Do warmup only.Do both warmup and measurement -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
private final boolean
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
doWarmup()
static ActionMode
Returns the enum constant of this type with the specified name.static ActionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNDEF
No action. -
WARMUP
Do warmup only. -
MEASUREMENT
Do measurement only. -
WARMUP_MEASUREMENT
Do both warmup and measurement
-
-
Field Details
-
doWarmup
private final boolean doWarmup -
doMeasurement
private final boolean doMeasurement
-
-
Constructor Details
-
ActionMode
private ActionMode(boolean doWarmup, boolean doMeasurement)
-
-
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
-
doWarmup
public boolean doWarmup() -
doMeasurement
public boolean doMeasurement()
-