public enum DataElementDescriptionLineTypeValues extends java.lang.Enum<DataElementDescriptionLineTypeValues>
List of description line types of Data Elements.
Enum Constant and Description |
---|
_8 |
_A |
_C |
_D |
_E |
_F |
_G |
_I |
_L |
_O |
_P |
_R |
_S |
_T |
_Y |
NONE |
Modifier and Type | Method and Description |
---|---|
static DataElementDescriptionLineTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataElementDescriptionLineTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataElementDescriptionLineTypeValues _8
88 Level
public static final DataElementDescriptionLineTypeValues _A
For Copybooks, when a variant Data Element is used as an alias-type Data Element, the Description field contains the Segment code of the Segment in which the parent Data Element is called.
public static final DataElementDescriptionLineTypeValues _C
Column label
The column label is defined on a single line but can use up to three lines. A delimiter in the column label indicates a line skip. The column label length is that of its longest line. The maximum length is 18 characters, including delimiters. A column label must be delimited by at least one delimiter (default = '/').
public static final DataElementDescriptionLineTypeValues _D
Data Element default value
One of the values entered can be referenced as the default value. When the value D is entered on the Segment -CE Lines tab, this value is assigned as the initial value.
public static final DataElementDescriptionLineTypeValues _E
With this value, you can enter a non-standard date format in the Description field.
The format indicated on the Data Element Definition tab must be X(n). n must be smaller than 28 (or 15 for an ORACLE database) for the automatic management of dates in the OnLine Systems Development function or the Pacbench C/S function.
public static final DataElementDescriptionLineTypeValues _F
Conversational format
For Data Elements used in input and output in online programs.
If no conversational format is defined, the extended internal format or the output format is recognized, depending on the nature of the Data Element in the Screen.
public static final DataElementDescriptionLineTypeValues _G
Graphic control
public static final DataElementDescriptionLineTypeValues _I
Declaration of the action code values
public static final DataElementDescriptionLineTypeValues _L
Data Element short label
This label is entered in the Description field.
Maximum length: 18 characters.
public static final DataElementDescriptionLineTypeValues _O
Declaration of the operation code values
public static final DataElementDescriptionLineTypeValues _P
Data Element presentation value
The sample value is entered in the Description field. This value is used when simulating a Screen for information purposes.
public static final DataElementDescriptionLineTypeValues _R
This value generates the relational name of the Data Element, on 18 characters. This name is entered in the Description field.
The relational name of a parent Data Element is not carried forward to the child Data Element.
public static final DataElementDescriptionLineTypeValues _S
The COBOL data names of the associated Reverse Data Elements are generated in the Description field.
public static final DataElementDescriptionLineTypeValues _T
Values of the TURBOIMAGE class list.
public static final DataElementDescriptionLineTypeValues _Y
C Language Type
public static final DataElementDescriptionLineTypeValues NONE
Value or description line.
With a blank line type, descriptive text is assigned to the Data Element. This text includes all possible values and what they mean.
public static DataElementDescriptionLineTypeValues 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 DataElementDescriptionLineTypeValues[] values()
for (DataElementDescriptionLineTypeValues c : DataElementDescriptionLineTypeValues.values()) System.out.println(c);