public enum ScreenPresenceCheckValues extends java.lang.Enum<ScreenPresenceCheckValues>
List of values for presence checks of the fields in the layout of the Screen.
Modifier and Type | Method and Description |
---|---|
static ScreenPresenceCheckValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenPresenceCheckValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenPresenceCheckValues _E
PF Key branching values checking
public static final ScreenPresenceCheckValues _F
Checked when present, without Data Element own values check
public static final ScreenPresenceCheckValues _N
Checked without Data Element own values check
public static final ScreenPresenceCheckValues _O
Required
public static final ScreenPresenceCheckValues _P
Checked when present
public static final ScreenPresenceCheckValues _R
Required Data Element
public static final ScreenPresenceCheckValues _S
Required, without Data Element own values check
public static final ScreenPresenceCheckValues NONE
Optional Data Element
public static ScreenPresenceCheckValues 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 ScreenPresenceCheckValues[] values()
for (ScreenPresenceCheckValues c : ScreenPresenceCheckValues.values()) System.out.println(c);