public static enum SasSession.SessionType extends Enum<SasSession.SessionType>
Enum Constant and Description |
---|
PUBLISHED_JOB
Initiated by running a job in the repository.
|
SAS_SESSION_EDITOR
Initiated by launching the SAS Session Editor application in the UI.
|
SYSTEM
Initiated by the system internally to perform a function.
|
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 SAS_SESSION_EDITOR
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) 2017, SAS Institute Inc., Cary, NC, USA