Enum ProcessConstants.NodeProperty
- java.lang.Object
-
- java.lang.Enum<ProcessConstants.NodeProperty>
-
- de.aristaflow.adept2.model.globals.ProcessConstants.NodeProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<ProcessConstants.NodeProperty>
- Enclosing class:
- ProcessConstants
public static enum ProcessConstants.NodeProperty extends Enum<ProcessConstants.NodeProperty>
Enum for all node properties. Each attribute of a node is considered a property.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTO_START
Whether this node could be started automatically.CONNECTOR_PARAMETER_MAPPING
The mapping between parameters and the connector IDs,Node.getConnectorMapping(ActivityConstants.AccessType)
.DESCRIPTION
A human readable description of the node,Node.getDescription()
.EXECUTABLE_BUSINESS_PROCESS
The executable business process,Node.getExecutableBusinessProcess()
.GROUP_EXECUTION_CONTEXT
GROUP_NAME
ID
The node ID,Node.getID()
.NAME
The node name,Node.getName()
.STAFF_ASSIGNMENT_RULE
The staff assignment rule,Node.getStaffAssignmentRule()
.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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
static ProcessConstants.NodeProperty
valueOf(int code)
Returns the enum constant of this type with the specified name.static ProcessConstants.NodeProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProcessConstants.NodeProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final ProcessConstants.NodeProperty ID
The node ID,Node.getID()
.
-
NAME
public static final ProcessConstants.NodeProperty NAME
The node name,Node.getName()
.
-
EXECUTABLE_BUSINESS_PROCESS
public static final ProcessConstants.NodeProperty EXECUTABLE_BUSINESS_PROCESS
The executable business process,Node.getExecutableBusinessProcess()
.
-
AUTO_START
public static final ProcessConstants.NodeProperty AUTO_START
Whether this node could be started automatically.Node.isAutoStartEnabled()
.
-
CONNECTOR_PARAMETER_MAPPING
public static final ProcessConstants.NodeProperty CONNECTOR_PARAMETER_MAPPING
The mapping between parameters and the connector IDs,Node.getConnectorMapping(ActivityConstants.AccessType)
.
-
SYSTEM_READ_PARAMS
public static final ProcessConstants.NodeProperty SYSTEM_READ_PARAMS
The mapping between AccessType SYSTEM_READ and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType)
.
-
SYSTEM_WRITE_PARAMS
public static final ProcessConstants.NodeProperty SYSTEM_WRITE_PARAMS
The mapping between AccessType SYSTEM_WRITE and node system parameters,Node.getSystemParameters(ActivityConstants.AccessType)
.
-
USER_ATTRIBUTE
public static final ProcessConstants.NodeProperty USER_ATTRIBUTE
The user attributes.
-
DESCRIPTION
public static final ProcessConstants.NodeProperty DESCRIPTION
A human readable description of the node,Node.getDescription()
.
-
STAFF_ASSIGNMENT_RULE
public static final ProcessConstants.NodeProperty STAFF_ASSIGNMENT_RULE
The staff assignment rule,Node.getStaffAssignmentRule()
.
-
GROUP_NAME
public static final ProcessConstants.NodeProperty GROUP_NAME
-
GROUP_EXECUTION_CONTEXT
public static final ProcessConstants.NodeProperty GROUP_EXECUTION_CONTEXT
-
-
Method Detail
-
values
public static ProcessConstants.NodeProperty[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessConstants.NodeProperty c : ProcessConstants.NodeProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessConstants.NodeProperty valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
public int getCode()
-
valueOf
public static ProcessConstants.NodeProperty valueOf(int code)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-