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

Enum ServerOrganizationValues

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


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

    List of organizations for Segment, Logical View or Table in Server Screen. Physical Characteristics.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _2 
      _A 
      _D 
      _G 
      _H 
      _S 
      _V 
      _W 
      _X 
      NONE 
    • Method Summary

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

      • _2

        public static final ServerOrganizationValues _2

        Call of a Business Component instance by instance/

        NOTE FOR THE ERROR MESSAGE FILE :

        The error message file can be attributed the following organizations :

        • V : its external name and its code in the VA Pac Database are not validated.

        • W: WORKING - no access generated.

        • H : SQL - the external name corresponds to the Block code (containing the relational database). The description and the accesses will be generated under the name corresponding to the Library code).

      • _G

        public static final ServerOrganizationValues _G

        'TABLE'-type Segment.

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

      • _H

        public static final ServerOrganizationValues _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 ServerOrganizationValues _W

        Segment accesses managed by specific procedures.

        Only one description in WORKING is generated.

        Call the user buffer Segment.

      • _X

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