Package org.openjdk.jmh.runner
Class ActionPlan
- java.lang.Object
-
- org.openjdk.jmh.runner.ActionPlan
-
- All Implemented Interfaces:
java.io.Serializable
public class ActionPlan extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<Action>
actions
private static long
serialVersionUID
private ActionType
type
-
Constructor Summary
Constructors Constructor Description ActionPlan(ActionType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Action action)
java.util.List<Action>
getActions()
java.util.List<Action>
getMeasurementActions()
ActionType
getType()
void
mixIn(ActionPlan other)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
actions
private final java.util.List<Action> actions
-
type
private final ActionType type
-
-
Constructor Detail
-
ActionPlan
public ActionPlan(ActionType type)
-
-
Method Detail
-
getType
public ActionType getType()
-
add
public void add(Action action)
-
mixIn
public void mixIn(ActionPlan other)
-
getActions
public java.util.List<Action> getActions()
-
getMeasurementActions
public java.util.List<Action> getMeasurementActions()
-
-