BusinessRuleNodeType
Defines the functional role of nodes within a business rule workflow graph
enum BusinessRuleNodeType {
inputNode
outputNode
decisionTableNode
functionNode
}
Values
BusinessRuleNodeType.inputNode
Entry point node that receives and processes input data for the business rule execution
BusinessRuleNodeType.outputNode
Terminal node that defines the final output structure and values after rule processing
BusinessRuleNodeType.decisionTableNode
Processing node containing decision logic with conditions and actions organized in tabular format
BusinessRuleNodeType.functionNode
Computational node that executes custom functions or complex calculations within the rule flow
Member Of
BusinessRuleDecisionTable
object ● BusinessRuleInput
object ● BusinessRuleOutput
object ● IBusinessRuleNode
interface