public static enum ECMA48.DeviceType extends java.lang.Enum<ECMA48.DeviceType>
| Enum Constant and Description |
|---|
VT100
DEC VT100 but also including the three VT102 functions.
|
VT102
DEC VT102.
|
VT220
DEC VT220.
|
XTERM
A subset of xterm.
|
| Modifier and Type | Method and Description |
|---|---|
static ECMA48.DeviceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ECMA48.DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECMA48.DeviceType VT100
public static final ECMA48.DeviceType VT102
public static final ECMA48.DeviceType VT220
public static final ECMA48.DeviceType XTERM
public static ECMA48.DeviceType[] values()
for (ECMA48.DeviceType c : ECMA48.DeviceType.values()) System.out.println(c);
public static ECMA48.DeviceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2019 Kevin Lamonte. Licensed MIT.