public static enum SasSession.SessionState extends Enum<SasSession.SessionState>
Enum Constant and Description |
---|
ACTIVE
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.
|
UNKNOWN
Unknown
|
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 final SasSession.SessionState UNKNOWN
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) 2017, SAS Institute Inc., Cary, NC, USA