public enum TestMode extends Enum<TestMode>
| Enum Constant and Description |
|---|
PLAYBACK
Playback data from an existing test session.
|
RECORD
Record data from a live test.
|
| Modifier and Type | Method and Description |
|---|---|
static TestMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestMode RECORD
public static final TestMode PLAYBACK
public static TestMode[] values()
public static TestMode 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 nullCopyright © 2019 Microsoft Corporation. All rights reserved.