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

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

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

List of organizations for Segment orTtable in standards Screens. Physical Characteristics.


Enum Constant Summary
_2
          DB2 or VAX SQL DB2 or VAX SQL Segment generation and description.
_4
          SQL 400
_7
          TURBO IMAGE For a TURBO IMAGE organization.
_A
           ADABAS-type 'ADABAS' type Segment.
_C
          INTEREL RBBC or RFM Relational database with SQL access
_D
          DL/1 DL/1 Segment.
_G
          Table-type Table type Segment.
_I
          INFORMIX, INGRES, SYBASE, SQL SERVER Relational database.
_M
          DATACOM/DB Relational database with SQL access
_N
          NONSTOP SQL For this relational database, the description of the Segment and the physical accesses are generated
_O
          ORACLE V5 Relational database with SQL access
_P
          ORACLE V6 or V7 Relational database with SQL access
_Q
          SQL/DS, ALLBASE/SQL, DB2/2, or DB2/6000 Relational database with SQL access
_R
          RDMS Relational database with SQL accesses: the description of the Segment and the physical accesses are generated.
_S
          DB2 or VAX SQL Relational database with SQL access
_T
          Total-type Total type Segment.
_U
          Managed by procedures Physical access to the Segment managed by specific procedures.
_V
          Indexed Segment organization: Indexed The description of data is generated.
_W
          Managed by procedures, fill display keys Segment access is managed by specific procedures and the display keys are automatically filled in (functions F40 and F60).
_Y
          IBM 38, UNISYS 2200 Database organization.
NONE
          No organization
 
Method Summary
static ScreenOrganizationValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenOrganizationValues[] 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

_2

public static final ScreenOrganizationValues _2

DB2 or VAX SQL DB2 or VAX SQL Segment generation and description. Only local accesses are not generated. The structure of variable indicators corresponding to the columns of a DB2 or VAX SQL table is always generated.

For all the Segments of a relational database accessed through SQL: The Segment description and physical accesses are generated. For Segment access in the repetitive category, the cursor declarative is also generated.


_4

public static final ScreenOrganizationValues _4

SQL 400


_7

public static final ScreenOrganizationValues _7

TURBO IMAGE For a TURBO IMAGE organization.

Other information required: the name of the TURBO IMAGE Block and primary access key are required.


_A

public static final ScreenOrganizationValues _A

ADABAS-type 'ADABAS' type Segment.

In this case, the Segment description is generated, but no access is executed. Generation of the control block and buffers used in the accesses


_C

public static final ScreenOrganizationValues _C

INTEREL RBBC or RFM Relational database with SQL access


_D

public static final ScreenOrganizationValues _D

DL/1 DL/1 Segment.

The description of data is generated. The Segment access orders for the reception and display processing are entirely generated, according to the type of logical access processing and use.


_G

public static final ScreenOrganizationValues _G

Table-type Table type Segment.

The generated access corresponds to the call of the general module of the Pactables function.


_I

public static final ScreenOrganizationValues _I

INFORMIX, INGRES, SYBASE, SQL SERVER Relational database. The description of the Segment and the physical accesses are generated.


_M

public static final ScreenOrganizationValues _M

DATACOM/DB Relational database with SQL access


_N

public static final ScreenOrganizationValues _N

NONSTOP SQL For this relational database, the description of the Segment and the physical accesses are generated


_O

public static final ScreenOrganizationValues _O

ORACLE V5 Relational database with SQL access


_P

public static final ScreenOrganizationValues _P

ORACLE V6 or V7 Relational database with SQL access


_Q

public static final ScreenOrganizationValues _Q

SQL/DS, ALLBASE/SQL, DB2/2, or DB2/6000 Relational database with SQL access


_R

public static final ScreenOrganizationValues _R

RDMS Relational database with SQL accesses: the description of the Segment and the physical accesses are generated.

Other related information required: A Database Block code is required, you must indicate the SQL object type (description type field) and the primary access key.


_S

public static final ScreenOrganizationValues _S

DB2 or VAX SQL Relational database with SQL access


_T

public static final ScreenOrganizationValues _T

Total-type Total type Segment.

The description of the Segment is generated but no access is executed.


_U

public static final ScreenOrganizationValues _U

Managed by procedures Physical access to the Segment managed by specific procedures.


_V

public static final ScreenOrganizationValues _V

Indexed Segment organization: Indexed

The description of data is generated. The access orders for reception and display procedures are entirely generated according to the logical access procedure and the use.


_W

public static final ScreenOrganizationValues _W

Managed by procedures, fill display keys Segment access is managed by specific procedures and the display keys are automatically filled in (functions F40 and F60).


_Y

public static final ScreenOrganizationValues _Y

IBM 38, UNISYS 2200 Database organization. Value used with IBM SYSTEM 38. UNISYS 2200: SFS indexed organization


NONE

public static final ScreenOrganizationValues NONE

No organization

Method Detail

valueOf

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

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