public enum ClientOrganizationValues extends java.lang.Enum<ClientOrganizationValues>
List of organizations for Segment or Table in Client Screens. Physical Characteristics.
Enum Constant and Description |
---|
_G
'TABLE'-type Segment. |
_H
Segment of a Relational Database Accessed via SQL : |
_V |
_W
Segment accesses managed by specific procedures. |
_X
Call of a Business Component. |
NONE |
Modifier and Type | Method and Description |
---|---|
static ClientOrganizationValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientOrganizationValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientOrganizationValues _G
'TABLE'-type Segment.
In this case, the generated access corresponds to the call of the Pactables general module.
public static final ClientOrganizationValues _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 ClientOrganizationValues _V
Segment Organization: Indexed.
public static final ClientOrganizationValues _W
Segment accesses managed by specific procedures.
Only one description in WORKING is generated.
public static final ClientOrganizationValues _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 ClientOrganizationValues NONE
No organization selected.
public static ClientOrganizationValues 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 ClientOrganizationValues[] values()
for (ClientOrganizationValues c : ClientOrganizationValues.values()) System.out.println(c);