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

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

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

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


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

IBM MVS/ESA OS/390


_1

public static final CobolTypeValues _1

IBM DOS/VSE


_3

public static final CobolTypeValues _3

UNIX, WINDOWS


_4

public static final CobolTypeValues _4

BULL GCOS7 COBOL


_5

public static final CobolTypeValues _5

BULL GCOS8 COBOL


_6

public static final CobolTypeValues _6

BULL GCOS8 COBOL, TP8 Screens


_8

public static final CobolTypeValues _8

UNISYS A-SERIES COBOL


_F

public static final CobolTypeValues _F

TANDEM COBOL


_I

public static final CobolTypeValues _I

DEC/VAX VMS COBOL


_K

public static final CobolTypeValues _K

ICL 2900 COBOL


_N

public static final CobolTypeValues _N

No generation


_O

public static final CobolTypeValues _O

IBM AS/400 COBOL


_Q

public static final CobolTypeValues _Q

ACUCOBOL


_R

public static final CobolTypeValues _R

TUXEDO COBOL


_U

public static final CobolTypeValues _U

UNISYS 2200–SERIES COBOL


_X

public static final CobolTypeValues _X

IBM MVS COBOL II, IBM VSE COBOL II


_Z

public static final CobolTypeValues _Z

IBM AIX


NONE

public static final CobolTypeValues NONE

Default Value of the Generated language field in the Library Definition tab.

Method Detail

valueOf

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

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