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

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

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

List of Program variants to generate.


Enum Constant Summary
_0
           
_1
           
_3
           
_4
           
_5
           
_8
           
_C
           
_F
           
_I
           
_K
           
_N
           
_O
           
_Q
           
_U
           
_X
           
_Z
           
 
Method Summary
static ProgramVariantValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProgramVariantValues[] 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 ProgramVariantValues _0

COBOL/VS IBM MVS


_1

public static final ProgramVariantValues _1

COBOL IBM VSE (COBOL II batch language only)


_3

public static final ProgramVariantValues _3

COBOL IBM AIX-OS/2-Windows/NT, MICRO FOCUS


_4

public static final ProgramVariantValues _4

COBOL BULL GCOS7


_5

public static final ProgramVariantValues _5

COBOL BULL GCOS8


_8

public static final ProgramVariantValues _8

COBOL UNISYS Series A: this variant is required at the Library level to work in half-byte packed mode.

This option can also be used with BULL GCOS8. In that case, the generation variant '5' must be entered in the Programs and Screens.


_C

public static final ProgramVariantValues _C

Extraction of COBOL source.


_F

public static final ProgramVariantValues _F

COBOL TANDEM


_I

public static final ProgramVariantValues _I

COBOL DEC/VAX VMS


_K

public static final ProgramVariantValues _K

COBOL ICL 2900


_N

public static final ProgramVariantValues _N

No adaptation to any language variant


_O

public static final ProgramVariantValues _O

COBOL AS/400


_Q

public static final ProgramVariantValues _Q

ACUCOBOL


_U

public static final ProgramVariantValues _U

COBOL UNISYS 2200 Series


_X

public static final ProgramVariantValues _X

COBOL II IBM MVS or VSE (OLSD function).


_Z

public static final ProgramVariantValues _Z

IBM AIX

Method Detail

valueOf

public static ProgramVariantValues 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 ProgramVariantValues[] 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 (ProgramVariantValues c : ProgramVariantValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared