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

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

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 Summary
_0
           
_1
           
_2
           
_3
           
_4
          

Used with :

_5
           
_C
          

Used with :

_F
           
_N
           
_R
           
_S
           
NONE
           
 
Method Summary
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.
 
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 MapTypeValues _0

Used with :


_1

public static final MapTypeValues _1

Used with :


_2

public static final MapTypeValues _2

Used with :


_3

public static final MapTypeValues _3

Used with variants 0 and X for IMS (IBM), MFS map in color.


_4

public static final MapTypeValues _4

Used with :


_5

public static final MapTypeValues _5

Used with variants 0 and X for CICS (IBM) monitor.


_C

public static final MapTypeValues _C

Used with :


_F

public static final MapTypeValues _F

Used with :


_N

public static final MapTypeValues _N

No generation.


_R

public static final MapTypeValues _R

Used with variant F for 'REQUESTER' type program or variant R for 'CLIENT' type program.


_S

public static final MapTypeValues _S

Used with variant F for 'SERVER' type program or variant R for 'SERVICE' type program.


NONE

public static final MapTypeValues NONE

Default value

Method Detail

valueOf

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

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