public static enum ProcessConstants.DataElementProperty extends java.lang.Enum<ProcessConstants.DataElementProperty>
| Enum Constant and Description |
|---|
DESCRIPTION
The description of the data element
DataElement.getDescription() |
ID
The ID of the data element,
DataElement.getID() |
IDENTIFIER
The ID of the identifier,
DataElement.getIdentifierID(). |
NAME
The name of the data element,
DataElement.getName(). |
PUBLIC
If the data element is public,
DataElement.isPublic(). |
TYPE
The type of the data element,
DataElement.getDataType() / ProcessConstants.AdeptDataType. |
USER_ATTRIBUTE
The user attributes.
|
USER_DEFINED_TYPE
The user defined type,
DataElement.getUDTName(). |
VIRTUAL
If the data element is virtual,
DataElement.isVirtual(). |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.DataElementProperty |
valueOf(int code) |
static ProcessConstants.DataElementProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.DataElementProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.DataElementProperty ID
DataElement.getID()public static final ProcessConstants.DataElementProperty NAME
DataElement.getName().public static final ProcessConstants.DataElementProperty DESCRIPTION
DataElement.getDescription()public static final ProcessConstants.DataElementProperty TYPE
DataElement.getDataType() / ProcessConstants.AdeptDataType.public static final ProcessConstants.DataElementProperty USER_DEFINED_TYPE
DataElement.getUDTName().public static final ProcessConstants.DataElementProperty IDENTIFIER
DataElement.getIdentifierID().public static final ProcessConstants.DataElementProperty PUBLIC
DataElement.isPublic().public static final ProcessConstants.DataElementProperty VIRTUAL
DataElement.isVirtual().public static final ProcessConstants.DataElementProperty USER_ATTRIBUTE
public static ProcessConstants.DataElementProperty[] values()
for (ProcessConstants.DataElementProperty c : ProcessConstants.DataElementProperty.values()) System.out.println(c);
public static ProcessConstants.DataElementProperty 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 int getCode()
public static ProcessConstants.DataElementProperty valueOf(int code)