public enum RecordingSessionState extends Enum<RecordingSessionState> implements com.ibm.rational.test.lt.recorder.core.internal.session.IRecorderComponentState
IRecordingSession
.Enum Constant and Description |
---|
CONVERTING
The session is terminated, and the persistence file is being upgraded to the current
version format.
|
DEPLOYING
The session has been started and is currently launching additional processes for
executing the recording components that need to be executed in a separate process.
|
INITIAL
The session has not been started yet.
|
LOCKED
The session is terminated and password-protected, and the passphrase has not been
provided.
|
RUNNING
The session has been started, the recorders are ready and the clients are all started.
|
STARTING_CLIENTS
The session has been started, the recorders are ready to capture data, and the clients
are being launched.
|
STARTING_RECORDERS
The session has been started and the recorders are being started.
|
STOPPING_CLIENTS
The session is about to stop and is waiting for all clients to stop.
|
STOPPING_RECORDERS
The session is about to stop and is waiting for all recorders to stop.
|
TERMINATED
The session is terminated, and the persistence file is complete.
|
UNDEPLOYING
The session is about to stop and is waiting for any extra process it has created to
terminate.
|
Modifier and Type | Method and Description |
---|---|
String |
getLabel()
Returns a localized label for the state (can be displayed to the user).
|
static RecordingSessionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordingSessionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingSessionState INITIAL
public static final RecordingSessionState DEPLOYING
public static final RecordingSessionState STARTING_RECORDERS
public static final RecordingSessionState STARTING_CLIENTS
public static final RecordingSessionState RUNNING
public static final RecordingSessionState STOPPING_CLIENTS
public static final RecordingSessionState STOPPING_RECORDERS
public static final RecordingSessionState UNDEPLOYING
public static final RecordingSessionState TERMINATED
public static final RecordingSessionState CONVERTING
public static final RecordingSessionState LOCKED
public static RecordingSessionState[] values()
for (RecordingSessionState c : RecordingSessionState.values()) System.out.println(c);
public static RecordingSessionState 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 nullpublic String getLabel()
© Copyright IBM Corp. 2013. All rights reserved.