com.ibm.pdp.maf.rpp.pac.common.dialog
Enum ScreenDescriptionTypeValues

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

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

List of description types of Segment. Physical Characteristics.


Enum Constant Summary
_1
           
_2
           
_E
           
NONE
           
 
Method Summary
static ScreenDescriptionTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenDescriptionTypeValues[] 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

_1

public static final ScreenDescriptionTypeValues _1

Database Segments Database Segments

Those whose keys are not isolated in a separate Segment. (default value for a DL/1 Segment, organization 'D' or for a Table, organization 'G')


_2

public static final ScreenDescriptionTypeValues _2

Conventional (variables) Conventional and multi record files of variable length

This type Segment will be appended to the '00' (common key) Segment.

For Type P organization (ORACLE V6) and Type I organization (SYBASE): automatic generation of CONNECT AT database, DECLARE database and access SQL AT database.

The generated description might vary according to the generation variant.


_E

public static final ScreenDescriptionTypeValues _E

Table-type Table type Segments:

The input format of the Data Elements called in the Segment is taken into account.


NONE

public static final ScreenDescriptionTypeValues NONE

Conventional (fixed) Conventional and multi record files of fixed length

This type of Segment will be appended to the '00' (common key) Segment.

Method Detail

valueOf

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

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