public enum ScreenFieldTypeValues extends java.lang.Enum<ScreenFieldTypeValues>
List of type of fields in the layout of Screens.
Enum Constant and Description |
---|
ERRMSG
Error Label (English)
|
LIERR
Error Label (French)
|
PASSWORD
Password (IMS)
|
PFKEY
Function Key
|
STANDARD
Defined Data Element
|
Modifier and Type | Method and Description |
---|---|
static ScreenFieldTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenFieldTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenFieldTypeValues ERRMSG
Error Label (English)
public static final ScreenFieldTypeValues LIERR
Error Label (French)
public static final ScreenFieldTypeValues PASSWORD
Password (IMS)
public static final ScreenFieldTypeValues PFKEY
Function Key
public static final ScreenFieldTypeValues STANDARD
Defined Data Element
public static ScreenFieldTypeValues 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 nullpublic static ScreenFieldTypeValues[] values()
for (ScreenFieldTypeValues c : ScreenFieldTypeValues.values()) System.out.println(c);