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 and Description |
---|
_0
IBM MVS/ESA OS/390
|
_1
IBM DOS/VSE
|
_3
UNIX, WINDOWS
|
_4
BULL GCOS7 COBOL
|
_5
BULL GCOS8 COBOL
|
_6
BULL GCOS8 COBOL, TP8 Screens
|
_8
UNISYS A-SERIES COBOL
|
_F
TANDEM COBOL
|
_I
DEC/VAX VMS COBOL
|
_K
ICL 2900 COBOL
|
_N
No generation
|
_O
IBM AS/400 COBOL
|
_Q
ACUCOBOL
|
_R
TUXEDO COBOL
|
_U
UNISYS 2200–SERIES COBOL
|
_X
IBM MVS COBOL II, IBM VSE COBOL II
|
NONE
Default Value of the Generated language field in the Library Definition tab.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final CobolTypeValues _0
IBM MVS/ESA OS/390
public static final CobolTypeValues _1
IBM DOS/VSE
public static final CobolTypeValues _3
UNIX, WINDOWS
public static final CobolTypeValues _4
BULL GCOS7 COBOL
public static final CobolTypeValues _5
BULL GCOS8 COBOL
public static final CobolTypeValues _6
BULL GCOS8 COBOL, TP8 Screens
public static final CobolTypeValues _8
UNISYS A-SERIES COBOL
public static final CobolTypeValues _F
TANDEM COBOL
public static final CobolTypeValues _I
DEC/VAX VMS COBOL
public static final CobolTypeValues _K
ICL 2900 COBOL
public static final CobolTypeValues _N
No generation
public static final CobolTypeValues _O
IBM AS/400 COBOL
public static final CobolTypeValues _Q
ACUCOBOL
public static final CobolTypeValues _R
TUXEDO COBOL
public static final CobolTypeValues _U
UNISYS 2200–SERIES COBOL
public static final CobolTypeValues _X
IBM MVS COBOL II, IBM VSE COBOL II
public static final CobolTypeValues NONE
Default Value of the Generated language field in the Library Definition tab.
public static CobolTypeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CobolTypeValues[] values()
for (CobolTypeValues c : CobolTypeValues.values()) System.out.println(c);