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 |
_1 |
_3 |
_4 |
_5 |
_6 |
_8 |
_F |
_I |
_K |
_N |
_O |
_Q |
_R |
_U |
_X |
_Z |
NONE |
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 _Z
IBM AIX
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);