com.ibm.pdp.maf.rpp.pac.program
Enum ProgramPhysicalUnitTypeComplementValues

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

public enum ProgramPhysicalUnitTypeComplementValues
extends java.lang.Enum<ProgramPhysicalUnitTypeComplementValues>

List of complementary physical unit type of Segments in Program.


Enum Constant Summary
_A
           
_C
           
_O
           
_P
           
_R
           
_S
           
NONE
           
 
Method Summary
static ProgramPhysicalUnitTypeComplementValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProgramPhysicalUnitTypeComplementValues[] 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

_A

public static final ProgramPhysicalUnitTypeComplementValues _A

ALLOWING ALL file optioning option & REGARDLESS sequential reading I: DEC VAX VMS


_C

public static final ProgramPhysicalUnitTypeComplementValues _C

ASCII set code 5: BULL GCOS8


_O

public static final ProgramPhysicalUnitTypeComplementValues _O

OPTIONAL option not to be generated 4: BULL GCOS7 and 5: BULL GCOS8


_P

public static final ProgramPhysicalUnitTypeComplementValues _P

Punch 1: IBM DOS/VSE


_R

public static final ProgramPhysicalUnitTypeComplementValues _R

Reader 1: IBM DOS/VSE


_S

public static final ProgramPhysicalUnitTypeComplementValues _S

EBCDIC set code 5: BULL GCOS8 and U: UNYSIS 2200 Series


NONE

public static final ProgramPhysicalUnitTypeComplementValues NONE

Unused

Method Detail

valueOf

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

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