public enum ProgramVariantValues extends java.lang.Enum<ProgramVariantValues>
List of Program variants to generate.
Enum Constant and Description |
---|
_0 |
_1 |
_3 |
_4 |
_5 |
_8 |
_C |
_F |
_I |
_K |
_N |
_O |
_Q |
_U |
_X |
_Z |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ProgramVariantValues _0
COBOL/VS IBM MVS
public static final ProgramVariantValues _1
COBOL IBM VSE (COBOL II batch language only)
public static final ProgramVariantValues _3
COBOL IBM AIX-OS/2-Windows/NT, MICRO FOCUS
public static final ProgramVariantValues _4
COBOL BULL GCOS7
public static final ProgramVariantValues _5
COBOL BULL GCOS8
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.
public static final ProgramVariantValues _C
Extraction of COBOL source.
public static final ProgramVariantValues _F
COBOL TANDEM
public static final ProgramVariantValues _I
COBOL DEC/VAX VMS
public static final ProgramVariantValues _K
COBOL ICL 2900
public static final ProgramVariantValues _N
No adaptation to any language variant
public static final ProgramVariantValues _O
COBOL AS/400
public static final ProgramVariantValues _Q
ACUCOBOL
public static final ProgramVariantValues _U
COBOL UNISYS 2200 Series
public static final ProgramVariantValues _X
COBOL II IBM MVS or VSE (OLSD function).
public static final ProgramVariantValues _Z
IBM AIX
public static ProgramVariantValues 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 ProgramVariantValues[] values()
for (ProgramVariantValues c : ProgramVariantValues.values()) System.out.println(c);