public enum MapTypeValues extends java.lang.Enum<MapTypeValues>
List of Map types to generate. Associated to the Cobol type, it constitutes the variant language for Screen or Server.
Enum Constant and Description |
---|
_0 |
_1 |
_2 |
_3 |
_4
Used with : |
_5 |
_C
Used with : |
_F |
_N |
_R |
_S |
NONE |
Modifier and Type | Method and Description |
---|---|
static MapTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTypeValues _0
Used with :
Variants 0, 1, X for CICS (IBM) (programs and BMS maps).
Variant Q for UNIX, WINDOWS (ACUCOBO
Variant 3 for PC / MICRO FOCUS (MS/DOS).
Variants 4, 5, 6 for QUESTAR.
Variant I for DEC/VAX.
Variant U for UNISYS 2200 (programs and FLDP maps).
Variant 8 for UNISYS Series A SDF format.
Variant O for AS 400.
public static final MapTypeValues _1
Used with :
Variants 0, X for IMS (IBM) (programs and MFS maps).
Variant 3 for PC / MICRO FOCUS (OS2).
Variants 4, 5, 6 for VIP TYPE.
public static final MapTypeValues _2
Used with :
Variants 0, 1, X for CICS (IBM), BMS map in color.
Variant 3 for MICRO FOCUS (UNIX).
public static final MapTypeValues _3
Used with variants 0 and X for IMS (IBM), MFS map in color.
public static final MapTypeValues _4
Used with :
Variants 0, X for IMS (IBM) monitor.
Variant 3 for IBM COBOL program.
public static final MapTypeValues _5
Used with variants 0 and X for CICS (IBM) monitor.
public static final MapTypeValues _C
Used with :
Variants 4, 5, 6, U for multiterminal
Variants 0, 1, X for CICS multiterminal.
Variant K for ICL.
Variant 8 for UNISYS Series A Logical Screen.
public static final MapTypeValues _F
Used with :
Variant 4 for TDS FORMS (BULL GCOS7).
Variant R for 'TPSVRINIT service' type program or 'TPSVRDONE service' type program.
public static final MapTypeValues _N
No generation.
public static final MapTypeValues _R
Used with variant F for 'REQUESTER' type program or variant R for 'CLIENT' type program.
public static final MapTypeValues _S
Used with variant F for 'SERVER' type program or variant R for 'SERVICE' type program.
public static final MapTypeValues NONE
Default value
public static MapTypeValues 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 MapTypeValues[] values()
for (MapTypeValues c : MapTypeValues.values()) System.out.println(c);