|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<AgentThread.RunState>
com.sun.faban.driver.engine.AgentThread.RunState
public static enum AgentThread.RunState
The various run states for an AgentThread.
| Enum Constant Summary | |
|---|---|
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 BenchmarkOperations to warm
the SUT. |
|
RUNNING
The AgentThread is running in steady state. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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 BenchmarkOperations 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.
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||