public static enum Session.SessionEngine extends Enum<Session.SessionEngine>
Enum Constant and Description |
---|
COMPOSITE
The session of a job that uses both a SAS and an R engine.
|
R
The session uses an R engine.
|
SAS
The session uses a SAS engine.
|
Modifier and Type | Method and Description |
---|---|
static Session.SessionEngine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Session.SessionEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Session.SessionEngine SAS
public static final Session.SessionEngine R
public static final Session.SessionEngine COMPOSITE
public static Session.SessionEngine[] values()
for (Session.SessionEngine c : Session.SessionEngine.values()) System.out.println(c);
public static Session.SessionEngine 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) 2022, SAS Institute Inc., Cary, NC, USA</i>