Enum Class ProcessConstants.NodeProperty
java.lang.Object
java.lang.Enum<ProcessConstants.NodeProperty>
de.aristaflow.adept2.model.globals.ProcessConstants.NodeProperty
- All Implemented Interfaces:
Serializable,Comparable<ProcessConstants.NodeProperty>,java.lang.constant.Constable
- Enclosing class:
- ProcessConstants
Enum for all node properties. Each attribute of a node is considered a
property.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhether this node could be started automatically.The mapping between parameters and the connector IDs,Node.getConnectorMapping(ActivityConstants.AccessType).A human readable description of the node,Node.getDescription().The executable business process,Node.getExecutableBusinessProcess().The node ID,Node.getID().The node name,Node.getName().The staff assignment rule,Node.getStaffAssignmentRule().The mapping between AccessType SYSTEM_READ and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType).The mapping between AccessType SYSTEM_WRITE and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType).The user attributes. -
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.NodeProperty[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ID
The node ID,Node.getID(). -
NAME
The node name,Node.getName(). -
EXECUTABLE_BUSINESS_PROCESS
The executable business process,Node.getExecutableBusinessProcess(). -
AUTO_START
Whether this node could be started automatically.Node.isAutoStartEnabled(). -
CONNECTOR_PARAMETER_MAPPING
The mapping between parameters and the connector IDs,Node.getConnectorMapping(ActivityConstants.AccessType). -
SYSTEM_READ_PARAMS
The mapping between AccessType SYSTEM_READ and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType). -
SYSTEM_WRITE_PARAMS
The mapping between AccessType SYSTEM_WRITE and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType). -
USER_ATTRIBUTE
The user attributes. -
DESCRIPTION
A human readable description of the node,Node.getDescription(). -
STAFF_ASSIGNMENT_RULE
The staff assignment rule,Node.getStaffAssignmentRule(). -
GROUP_NAME
-
GROUP_EXECUTION_CONTEXT
-
-
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
-