com.ibm.pdp.maf.rpp.pac.common.dialog

Enum ClientOrganizationValues

  • java.lang.Object
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ClientOrganizationValues>


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

    List of organizations for Segment or Table in Client Screens. Physical Characteristics.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _G

      'TABLE'-type Segment.

      _H

      Segment of a Relational Database Accessed via SQL :

      _V 
      _W

      Segment accesses managed by specific procedures.

      _X

      Call of a Business Component.

      NONE 
    • Method Summary

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

      • _G

        public static final ClientOrganizationValues _G

        'TABLE'-type Segment.

        In this case, the generated access corresponds to the call of the Pactables general module.

      • _H

        public static final ClientOrganizationValues _H

        Segment of a Relational Database Accessed via SQL :

        The Segment description and physical accesses are generated. For segment access in the repetitive category, the cursor declarative is also generated.

      • _W

        public static final ClientOrganizationValues _W

        Segment accesses managed by specific procedures.

        Only one description in WORKING is generated.

      • _X

        public static final ClientOrganizationValues _X

        Call of a Business Component.

        All the Segments that are called in the repetitive and in selection must be of the same type: you cannot have Segments with 'X' organization with Segments with other organizations.

    • Method Detail

      • valueOf

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