| 
 | |||||||||
| 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 | |
|---|---|
| ENDEDThe AgentThreadhas completed. | |
| INITIALIZINGThe AgentThreadhas initialized. | |
| NOT_STARTEDThe AgentThreadthread has not started. | |
| POST_RUNThe AgentThreadis doing a post run. | |
| PRE_RUNThe AgentThreadis executingBenchmarkOperations to warm
 the SUT. | |
| RUNNINGThe AgentThreadis 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 | ||||||||