public enum DataElementTypeValues extends java.lang.Enum<DataElementTypeValues>
List of Data Element types.
Enum Constant and Description |
---|
_A
ALIAS Data Element
This value is automatically set upon the retrieval of existing data. |
_L
Large Object Data Element
|
_P
Property: elementary piece of information defined at the conceptual level.
|
_R
Real Data Element (default value): elementary piece of information, defined at the repository level.
|
_U
Unicode-type Data Element.
|
INHERITED
Value of the parent Data Element
|
Modifier and Type | Method and Description |
---|---|
static DataElementTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataElementTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataElementTypeValues _A
ALIAS Data Element
This value is automatically set upon the retrieval of existing data.
public static final DataElementTypeValues _L
Large Object Data Element
public static final DataElementTypeValues _P
Property: elementary piece of information defined at the conceptual level.
Note: the format is optional.
public static final DataElementTypeValues _R
Real Data Element (default value): elementary piece of information, defined at the repository level.
DBD function: CODASYL elementary data, relational column.
public static final DataElementTypeValues _U
Unicode-type Data Element.
Note: the usage must be 'N' (default), 'X' or '1'.
public static final DataElementTypeValues INHERITED
Value of the parent Data Element
public static DataElementTypeValues 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 DataElementTypeValues[] values()
for (DataElementTypeValues c : DataElementTypeValues.values()) System.out.println(c);