com.ibm.pdp.maf.rpp.pac.segment

Enum LogicalViewDataTypeValues

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _E 
      _R 
      _U 
      NONE 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static LogicalViewDataTypeValues valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static LogicalViewDataTypeValues[] 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

      • _E

        public static final LogicalViewDataTypeValues _E

        Extraction parameter

        The Data Element is used as a parameter for an extraction method. The 'E' type Data Elements must be entered in the '-CE' lines before the Data Elements that describe the Logical View contents. Each identifier Data Element ('U' type) is an implicit extraction parameter. The other Data Elements describing the Logical View cannot be used as parameters. If necessary, you can define and call a child Data Element.

      • _R

        public static final LogicalViewDataTypeValues _R

        Repeated Structure

        There is only one repeated structure for one Logical View. A repeated structure is specified in the group Data Elements. This Data Element indicates the beginning of the repeated Data Elements. The end of the repeated Data Elements is deduced from the number of Data Elements in a group.

      • _U

        public static final LogicalViewDataTypeValues _U

        Identifier for paging.

        Data Elements which are to be used as selection criteria or start key for the reading of data occurrences in the database. Identifier for the paging of a list for the client. As output from the server, it contains the selection criteria values of the next page.

      • NONE

        public static final LogicalViewDataTypeValues NONE

        None

        Data Element not used as a parameter. For Data Elements describing the Logical View.

    • Method Detail

      • valueOf

        public static LogicalViewDataTypeValues 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 LogicalViewDataTypeValues[] 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 (LogicalViewDataTypeValues c : LogicalViewDataTypeValues.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared