public enum ScreenUpdateOptionValues extends java.lang.Enum<ScreenUpdateOptionValues>
List of values of update option for the fields in the layout of the Screen.
Enum Constant and Description |
---|
_F
Reserved to Reversed Screen
|
_G
Generate Screen branching
|
_M
Updatr by substitution
|
_P
Perform the standard validations
|
_S
Simulate Screen branching
|
_V
Value to validate
|
MINUS
Update by substraction
|
NONE
Update bu substitution
|
PLUS
Update by addition
|
Modifier and Type | Method and Description |
---|---|
static ScreenUpdateOptionValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenUpdateOptionValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenUpdateOptionValues _F
Reserved to Reversed Screen
public static final ScreenUpdateOptionValues _G
Generate Screen branching
public static final ScreenUpdateOptionValues _M
Updatr by substitution
public static final ScreenUpdateOptionValues _P
Perform the standard validations
public static final ScreenUpdateOptionValues _S
Simulate Screen branching
public static final ScreenUpdateOptionValues _V
Value to validate
public static final ScreenUpdateOptionValues MINUS
Update by substraction
public static final ScreenUpdateOptionValues NONE
Update bu substitution
public static final ScreenUpdateOptionValues PLUS
Update by addition
public static ScreenUpdateOptionValues 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 ScreenUpdateOptionValues[] values()
for (ScreenUpdateOptionValues c : ScreenUpdateOptionValues.values()) System.out.println(c);