public enum LogicalViewDataTypeValues extends java.lang.Enum<LogicalViewDataTypeValues>
List of data types for Logical View component.
Enum Constant and Description |
---|
_E
Extraction parameterThe Data Element is used as a parameter for an extraction method.
|
_R
Repeated StructureThere is only one repeated structure for one Logical View.
|
_U
Identifier for paging.
|
NONE
NoneData Element not used as a parameter.
|
Modifier and Type | Method and Description |
---|---|
static LogicalViewDataTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogicalViewDataTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalViewDataTypeValues _E
Extraction parameter
The Data Element is used as a parameter for an extraction method. The 'E' type Data Elements must be entered in the '-CE' lines before the Data Elements that describe the Logical View contents. Each identifier Data Element ('U' type) is an implicit extraction parameter. The other Data Elements describing the Logical View cannot be used as parameters. If necessary, you can define and call a child Data Element.
public static final LogicalViewDataTypeValues _R
Repeated Structure
There is only one repeated structure for one Logical View. A repeated structure is specified in the group Data Elements. This Data Element indicates the beginning of the repeated Data Elements. The end of the repeated Data Elements is deduced from the number of Data Elements in a group.
public static final LogicalViewDataTypeValues _U
Identifier for paging.
Data Elements which are to be used as selection criteria or start key for the reading of data occurrences in the database. Identifier for the paging of a list for the client. As output from the server, it contains the selection criteria values of the next page.
public static final LogicalViewDataTypeValues NONE
None
Data Element not used as a parameter. For Data Elements describing the Logical View.
public static LogicalViewDataTypeValues 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 LogicalViewDataTypeValues[] values()
for (LogicalViewDataTypeValues c : LogicalViewDataTypeValues.values()) System.out.println(c);