Enum Class ProcessConstants.DataElementProperty
java.lang.Object
java.lang.Enum<ProcessConstants.DataElementProperty>
de.aristaflow.adept2.model.globals.ProcessConstants.DataElementProperty
- All Implemented Interfaces:
Serializable,Comparable<ProcessConstants.DataElementProperty>,java.lang.constant.Constable
- Enclosing class:
- ProcessConstants
public static enum ProcessConstants.DataElementProperty
extends Enum<ProcessConstants.DataElementProperty>
The properties / attributes of data elements.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe description of the data elementDataElement.getDescription()The ID of the data element,DataElement.getID()The ID of the identifier,DataElement.getIdentifierID().The name of the data element,DataElement.getName().If the data element is public,DataElement.isPublic().The type of the data element,DataElement.getDataType()/ProcessConstants.AdeptDataType.The user attributes.The user defined type,DataElement.getUDTName().If the data element is virtual,DataElement.isVirtual(). -
Method Summary
Modifier and TypeMethodDescriptionintgetCode()valueOf(int code) Returns the enum constant of this class with the specified name.Returns the enum constant of this class with the specified name.static ProcessConstants.DataElementProperty[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ID
The ID of the data element,DataElement.getID() -
NAME
The name of the data element,DataElement.getName(). -
DESCRIPTION
The description of the data elementDataElement.getDescription() -
TYPE
The type of the data element,DataElement.getDataType()/ProcessConstants.AdeptDataType. -
USER_DEFINED_TYPE
The user defined type,DataElement.getUDTName(). -
IDENTIFIER
The ID of the identifier,DataElement.getIdentifierID(). -
PUBLIC
If the data element is public,DataElement.isPublic(). -
VIRTUAL
If the data element is virtual,DataElement.isVirtual(). -
USER_ATTRIBUTE
The user attributes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getCode
public int getCode() -
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
code- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-