public static enum Session.SessionType extends Enum<Session.SessionType>
Enum Constant and Description |
---|
INTERACTIVE
Initiated by launching the 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 Session.SessionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Session.SessionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Session.SessionType INTERACTIVE
public static final Session.SessionType TEST_JOB
public static final Session.SessionType WORKSPACE_JOB
public static final Session.SessionType PUBLISHED_JOB
public static final Session.SessionType SYSTEM
public static final Session.SessionType UNKNOWN
public static Session.SessionType[] values()
for (Session.SessionType c : Session.SessionType.values()) System.out.println(c);
public static Session.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 null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>