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

Enum MapTypeValues

  • java.lang.Object
    • java.lang.Enum<MapTypeValues>
      • com.ibm.pdp.maf.rpp.pac.common.MapTypeValues
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MapTypeValues>


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

    List of Map types to generate. Associated to the Cobol type, it constitutes the variant language for Screen or Server.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _0 
      _1 
      _2 
      _3 
      _4

      Used with :

      _5 
      _C

      Used with :

      _F 
      _N 
      _R 
      _S 
      NONE 
    • Method Summary

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

      • _0

        public static final MapTypeValues _0

        Used with :

        • Variants 0, 1, X for CICS (IBM) (programs and BMS maps).

        • Variant Q for UNIX, WINDOWS (ACUCOBO

        • Variant 3 for PC / MICRO FOCUS (MS/DOS).

        • Variants 4, 5, 6 for QUESTAR.

        • Variant I for DEC/VAX.

        • Variant U for UNISYS 2200 (programs and FLDP maps).

        • Variant 8 for UNISYS Series A SDF format.

        • Variant O for AS 400.

      • _1

        public static final MapTypeValues _1

        Used with :

        • Variants 0, X for IMS (IBM) (programs and MFS maps).

        • Variant 3 for PC / MICRO FOCUS (OS2).

        • Variants 4, 5, 6 for VIP TYPE.

      • _2

        public static final MapTypeValues _2

        Used with :

        • Variants 0, 1, X for CICS (IBM), BMS map in color.

        • Variant 3 for MICRO FOCUS (UNIX).

      • _3

        public static final MapTypeValues _3

        Used with variants 0 and X for IMS (IBM), MFS map in color.

      • _4

        public static final MapTypeValues _4

        Used with :

        • Variants 0, X for IMS (IBM) monitor.

        • Variant 3 for IBM COBOL program.

      • _5

        public static final MapTypeValues _5

        Used with variants 0 and X for CICS (IBM) monitor.

      • _C

        public static final MapTypeValues _C

        Used with :

        • Variants 4, 5, 6, U for multiterminal

        • Variants 0, 1, X for CICS multiterminal.

        • Variant K for ICL.

        • Variant 8 for UNISYS Series A Logical Screen.

      • _F

        public static final MapTypeValues _F

        Used with :

        • Variant 4 for TDS FORMS (BULL GCOS7).

        • Variant R for 'TPSVRINIT service' type program or 'TPSVRDONE service' type program.

      • _R

        public static final MapTypeValues _R

        Used with variant F for 'REQUESTER' type program or variant R for 'CLIENT' type program.

      • _S

        public static final MapTypeValues _S

        Used with variant F for 'SERVER' type program or variant R for 'SERVICE' type program.

    • Method Detail

      • valueOf

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