public static enum SasSession.SessionState extends Enum<SasSession.SessionState>
Enum Constant and Description |
---|
ACTIVE
The code is currently executing.
|
BROKEN
Invalid state.
|
ENDED
Ended, and not available for code execution.
|
ENDING
End SAS session has been called and is in the process of ending.
|
IDLE
Available for code execution.
|
Modifier and Type | Method and Description |
---|---|
static SasSession.SessionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SasSession.SessionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SasSession.SessionState IDLE
public static final SasSession.SessionState ACTIVE
public static final SasSession.SessionState ENDED
public static final SasSession.SessionState ENDING
public static final SasSession.SessionState BROKEN
public static SasSession.SessionState[] values()
for (SasSession.SessionState c : SasSession.SessionState.values()) System.out.println(c);
public static SasSession.SessionState 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) 2020, SAS Institute Inc., Cary, NC, USA