public static enum AgentThread.RunState extends Enum<AgentThread.RunState>
AgentThread
.Enum Constant and Description |
---|
ENDED
The
AgentThread has completed. |
INITIALIZING
The
AgentThread has initialized. |
NOT_STARTED
The
AgentThread thread has not started. |
POST_RUN
The
AgentThread is doing a post run. |
PRE_RUN
The
AgentThread is executing BenchmarkOperation s to warm
the SUT. |
RUNNING
The
AgentThread is running in steady state. |
Modifier and Type | Method and Description |
---|---|
static AgentThread.RunState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentThread.RunState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentThread.RunState NOT_STARTED
AgentThread
thread has not started.public static final AgentThread.RunState INITIALIZING
AgentThread
has initialized.public static final AgentThread.RunState PRE_RUN
AgentThread
is executing BenchmarkOperation
s to warm
the SUT.public static final AgentThread.RunState RUNNING
AgentThread
is running in steady state.public static final AgentThread.RunState POST_RUN
AgentThread
is doing a post run.public static final AgentThread.RunState ENDED
AgentThread
has completed.public static AgentThread.RunState[] values()
for (AgentThread.RunState c : AgentThread.RunState.values()) System.out.println(c);
public static AgentThread.RunState 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 null