public enum ScreenControlBreakValues extends java.lang.Enum<ScreenControlBreakValues>
List of control breaks. Logical Characteristics.
Modifier and Type | Method and Description |
---|---|
static ScreenControlBreakValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenControlBreakValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenControlBreakValues _C
Display break for organizations different from X.
Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.
public static final ScreenControlBreakValues _E
For an SQL organization: Display control break. It causes the generation of an equal condition in the WHERE clause of the SQL DECLARE CURSOR statement (and not '>=', which is generated otherwise). The use of CURSOR is optimized in the repetitive category.
public static final ScreenControlBreakValues NONE
No control break for organizations different from X.
Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.
public static ScreenControlBreakValues 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 ScreenControlBreakValues[] values()
for (ScreenControlBreakValues c : ScreenControlBreakValues.values()) System.out.println(c);