Package org.azd.enums
Enum Class TestSessionSource
- All Implemented Interfaces:
Serializable
,Comparable<TestSessionSource>
,Constable
Source of the test session
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe session was created from feedback client.The session was created from browser extension.To show sessions from all supported sources.Source of test session uncertain as it is staleThe session was created from Microsoft Test Manager exploratory desktop tool.The session was created from web access using Microsoft Test Manager exploratory desktop tool.The session was created from browser extension. -
Method Summary
Modifier and TypeMethodDescriptionstatic TestSessionSource
Returns the enum constant of this class with the specified name.static TestSessionSource[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FEEDBACK_DESKTOP
The session was created from feedback client. -
FEEDBACK_WEB
The session was created from browser extension. -
SESSION_IN_SIGHTS_FOR_ALL
To show sessions from all supported sources. -
UNKNOWN
Source of test session uncertain as it is stale -
XT_DESKTOP
The session was created from Microsoft Test Manager exploratory desktop tool. -
XT_DESKTOP2
The session was created from web access using Microsoft Test Manager exploratory desktop tool. -
XT_WEB
The session was created from browser extension.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-