com.ibm.pdp.maf.rpp.pac.dataelement
Enum DataElementDescriptionLineTypeValues

java.lang.Object
  extended by java.lang.Enum<DataElementDescriptionLineTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.dataelement.DataElementDescriptionLineTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataElementDescriptionLineTypeValues>

public enum DataElementDescriptionLineTypeValues
extends java.lang.Enum<DataElementDescriptionLineTypeValues>

List of description line types of Data Elements.


Enum Constant Summary
_8
           
_A
           
_C
           
_D
           
_E
           
_F
           
_G
           
_I
           
_L
           
_O
           
_P
           
_R
           
_S
           
_T
           
_Y
           
NONE
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

_8

public static final DataElementDescriptionLineTypeValues _8

88 Level


_A

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.


_C

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 = '/').


_D

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.


_E

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.


_F

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.


_G

public static final DataElementDescriptionLineTypeValues _G

Graphic control


_I

public static final DataElementDescriptionLineTypeValues _I

Declaration of the action code values


_L

public static final DataElementDescriptionLineTypeValues _L

Data Element short label

This label is entered in the Description field.

Maximum length: 18 characters.


_O

public static final DataElementDescriptionLineTypeValues _O

Declaration of the operation code values


_P

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.


_R

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.


_S

public static final DataElementDescriptionLineTypeValues _S

The COBOL data names of the associated Reverse Data Elements are generated in the Description field.


_T

public static final DataElementDescriptionLineTypeValues _T

Values of the TURBOIMAGE class list.


_Y

public static final DataElementDescriptionLineTypeValues _Y

C Language Type


NONE

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.

Method Detail

valueOf

public static DataElementDescriptionLineTypeValues valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static DataElementDescriptionLineTypeValues[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DataElementDescriptionLineTypeValues c : DataElementDescriptionLineTypeValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared