Package com.sas.lsaf.execution.session
Enum Class Session.SessionType
- All Implemented Interfaces:
Serializable,Comparable<Session.SessionType>,Constable
- Enclosing class:
Session
The enumeration that describes the source that started a session.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInitiated by launching the session editor in the application.Initiated by running a job in the repository.Initiated by the system internally to perform a function.Initiated by testing a job in the workspace.Unknown.Initiated by running a job in the workspace. -
Method Summary
Modifier and TypeMethodDescriptionstatic Session.SessionTypeReturns the enum constant of this class with the specified name.static Session.SessionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERACTIVE
Initiated by launching the session editor in the application. -
TEST_JOB
Initiated by testing a job in the workspace. -
WORKSPACE_JOB
Initiated by running a job in the workspace. -
PUBLISHED_JOB
Initiated by running a job in the repository. -
SYSTEM
Initiated by the system internally to perform a function. -
UNKNOWN
Unknown.
-
-
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
-