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

Enum DataElementDescriptionLineTypeValues

    • Method Summary

      Methods 
      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.
      • 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

      • _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.

      • _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.

      • 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