public enum SessionType extends Enum<SessionType>
Enum Constant and Description |
---|
ALC
Indicates an ALC terminal session
|
IBM_3270
Indicates an IBM 3270 terminal session
|
IBM_5250
Indicates an IBM 5250 session.
|
T27
Indicates an T27 terminal session
|
UTS
Indicates a UTS session.
|
VT
Indicates a VT session.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static SessionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionType IBM_3270
public static final SessionType IBM_5250
public static final SessionType VT
public static final SessionType UTS
public static final SessionType ALC
public static final SessionType T27
public static SessionType[] values()
for (SessionType c : SessionType.values()) System.out.println(c);
public static 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 nullpublic String toString()
toString
in class Enum<SessionType>
Copyright © 2020 Micro Focus. All rights reserved.