public static enum SasSession.SessionType extends Enum<SasSession.SessionType>
Enum Constant and Description |
---|
INTERACTIVE
Initiated by launching the SAS session editor in the application.
|
PUBLISHED_JOB
Initiated by running a job in the repository.
|
SYSTEM
Initiated by the system internally to perform a function.
|
TEST_JOB
Initiated by testing a job in the workspace.
|
UNKNOWN
Unknown.
|
WORKSPACE_JOB
Initiated by running a job in the workspace.
|
Modifier and Type | Method and Description |
---|---|
static SasSession.SessionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SasSession.SessionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SasSession.SessionType INTERACTIVE
public static final SasSession.SessionType TEST_JOB
public static final SasSession.SessionType WORKSPACE_JOB
public static final SasSession.SessionType PUBLISHED_JOB
public static final SasSession.SessionType SYSTEM
public static final SasSession.SessionType UNKNOWN
public static SasSession.SessionType[] values()
for (SasSession.SessionType c : SasSession.SessionType.values()) System.out.println(c);
public static SasSession.SessionType 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 (c) 2019, SAS Institute Inc., Cary, NC, USA