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

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

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

List of organizations for Segment, Logical View or Table in Server Screen. Physical Characteristics.


Enum Constant Summary
_2
          Call of a Business Component instance by instance/ NOTE FOR THE ERROR MESSAGE FILE : The error message file can be attributed the following organizations : V : its external name and its code in the VA Pac Database are not validated.
_A
          ADABAS Segment.
_D
          DL/1 Segment
_G
          'TABLE'-type Segment.
_H
          Segment of a Relational Database Accessed via SQL :The Segment description and physical accesses are generated.
_S
          Call of the Logical View.
_V
          Segment Organization: Indexed.
_W
          Segment accesses managed by specific procedures.
_X
          Call of a Business Component.
NONE
          No organization selected.
 
Method Summary
static ServerOrganizationValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ServerOrganizationValues[] 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 ServerOrganizationValues _2

Call of a Business Component instance by instance/

NOTE FOR THE ERROR MESSAGE FILE :

The error message file can be attributed the following organizations :


_A

public static final ServerOrganizationValues _A

ADABAS Segment.

Only one description in WORKING is generated.


_D

public static final ServerOrganizationValues _D

DL/1 Segment


_G

public static final ServerOrganizationValues _G

'TABLE'-type Segment.

In this case, the generated access corresponds to the call of the Pactables general module.


_H

public static final ServerOrganizationValues _H

Segment of a Relational Database Accessed via SQL :

The Segment description and physical accesses are generated. For segment access in the repetitive category, the cursor declarative is also generated.


_S

public static final ServerOrganizationValues _S

Call of the Logical View.


_V

public static final ServerOrganizationValues _V

Segment Organization: Indexed.


_W

public static final ServerOrganizationValues _W

Segment accesses managed by specific procedures.

Only one description in WORKING is generated.

Call the user buffer Segment.


_X

public static final ServerOrganizationValues _X

Call of a Business Component.

All the Segments that are called in the repetitive and in selection must be of the same type: you cannot have Segments with 'X' organization with Segments with other organizations.


NONE

public static final ServerOrganizationValues NONE

No organization selected.

Method Detail

valueOf

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

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