public enum ServerOrganizationValues extends java.lang.Enum<ServerOrganizationValues>
List of organizations for Segment, Logical View or Table in Server Screen. Physical Characteristics.
Modifier and Type | Method and Description |
---|---|
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.
|
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 :
V : its external name and its code in the VA Pac Database are not validated.
W: WORKING - no access generated.
H : SQL - the external name corresponds to the Block code (containing the relational database). The description and the accesses will be generated under the name corresponding to the Library code).
public static final ServerOrganizationValues _A
ADABAS Segment.
Only one description in WORKING is generated.
public static final ServerOrganizationValues _D
DL/1 Segment
public static final ServerOrganizationValues _G
'TABLE'-type Segment.
In this case, the generated access corresponds to the call of the Pactables general module.
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.
public static final ServerOrganizationValues _S
Call of the Logical View.
public static final ServerOrganizationValues _V
Segment Organization: Indexed.
public static final ServerOrganizationValues _W
Segment accesses managed by specific procedures.
Only one description in WORKING is generated.
Call the user buffer Segment.
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.
public static final ServerOrganizationValues NONE
No organization selected.
public static ServerOrganizationValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ServerOrganizationValues[] values()
for (ServerOrganizationValues c : ServerOrganizationValues.values()) System.out.println(c);