Uses of Interface
org.camunda.bpm.dmn.engine.DmnDecision
-
-
Uses of DmnDecision in org.camunda.bpm.dmn.engine
Methods in org.camunda.bpm.dmn.engine that return DmnDecision Modifier and Type Method Description DmnDecisionDmnDecisionRequirementsGraph. getDecision(java.lang.String key)Gets the containing decision with the given key.DmnDecisionDmnEngine. parseDecision(java.lang.String decisionKey, java.io.InputStream inputStream)Parse the decision with the given key in a DMN decision model.DmnDecisionDmnEngine. parseDecision(java.lang.String decisionKey, DmnModelInstance dmnModelInstance)Parse the decision with the given key in a DMN decision model.Methods in org.camunda.bpm.dmn.engine that return types with arguments of type DmnDecision Modifier and Type Method Description java.util.Collection<DmnDecision>DmnDecisionRequirementsGraph. getDecisions()Gets the containing decisions.java.util.Collection<DmnDecision>DmnDecision. getRequiredDecisions()Returns the required decisions of this decision.java.util.List<DmnDecision>DmnEngine. parseDecisions(java.io.InputStream inputStream)Parse all decisions in a DMN decision model.java.util.List<DmnDecision>DmnEngine. parseDecisions(DmnModelInstance dmnModelInstance)Parse all decisions in a DMN decision model.Methods in org.camunda.bpm.dmn.engine with parameters of type DmnDecision Modifier and Type Method Description DmnDecisionResultDmnEngine. evaluateDecision(DmnDecision decision, java.util.Map<java.lang.String,java.lang.Object> variables)Evaluates a decision.DmnDecisionResultDmnEngine. evaluateDecision(DmnDecision decision, VariableContext variableContext)Evaluates a decision.DmnDecisionTableResultDmnEngine. evaluateDecisionTable(DmnDecision decision, java.util.Map<java.lang.String,java.lang.Object> variables)Evaluates a decision which is implemented as decision table.DmnDecisionTableResultDmnEngine. evaluateDecisionTable(DmnDecision decision, VariableContext variableContext)Evaluates a decision which is implemented as decision table. -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.delegate
Methods in org.camunda.bpm.dmn.engine.delegate that return DmnDecision Modifier and Type Method Description DmnDecisionDmnDecisionLogicEvaluationEvent. getDecision()DmnDecisionDmnDecisionTableEvaluationEvent. getDecisionTable() -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.impl
Classes in org.camunda.bpm.dmn.engine.impl that implement DmnDecision Modifier and Type Class Description classDmnDecisionImplFields in org.camunda.bpm.dmn.engine.impl with type parameters of type DmnDecision Modifier and Type Field Description protected java.util.Map<java.lang.String,DmnDecision>DmnDecisionRequirementsGraphImpl. decisionsprotected java.util.Collection<DmnDecision>DmnDecisionImpl. requiredDecisionMethods in org.camunda.bpm.dmn.engine.impl that return DmnDecision Modifier and Type Method Description DmnDecisionDmnDecisionRequirementsGraphImpl. getDecision(java.lang.String key)DmnDecisionDefaultDmnEngine. parseDecision(java.lang.String decisionKey, java.io.InputStream inputStream)DmnDecisionDefaultDmnEngine. parseDecision(java.lang.String decisionKey, DmnModelInstance dmnModelInstance)Methods in org.camunda.bpm.dmn.engine.impl that return types with arguments of type DmnDecision Modifier and Type Method Description java.util.Collection<DmnDecision>DmnDecisionRequirementsGraphImpl. getDecisions()java.util.Collection<DmnDecision>DmnDecisionImpl. getRequiredDecisions()java.util.List<DmnDecision>DefaultDmnEngine. parseDecisions(java.io.InputStream inputStream)java.util.List<DmnDecision>DefaultDmnEngine. parseDecisions(DmnModelInstance dmnModelInstance)Methods in org.camunda.bpm.dmn.engine.impl with parameters of type DmnDecision Modifier and Type Method Description voidDmnDecisionRequirementsGraphImpl. addDecision(DmnDecision decision)protected voidDefaultDmnDecisionContext. addResultToVariableContext(DmnDecisionResult evaluatedResult, VariableMap variableMap, DmnDecision evaluatedDecision)protected voidDefaultDmnDecisionContext. buildDecisionTree(DmnDecision decision, java.util.List<DmnDecision> requiredDecisions)DmnEngineExceptionDmnEngineLogger. decisionIsNotADecisionTable(DmnDecision decision)DmnEngineExceptionDmnEngineLogger. decisionTypeNotSupported(DmnDecision decision)DmnDecisionResultDefaultDmnDecisionContext. evaluateDecision(DmnDecision decision, VariableContext variableContext)Evaluate a decision with the givenVariableContextDmnDecisionResultDefaultDmnEngine. evaluateDecision(DmnDecision decision, java.util.Map<java.lang.String,java.lang.Object> variables)DmnDecisionResultDefaultDmnEngine. evaluateDecision(DmnDecision decision, VariableContext variableContext)DmnDecisionTableResultDefaultDmnEngine. evaluateDecisionTable(DmnDecision decision, java.util.Map<java.lang.String,java.lang.Object> variables)DmnDecisionTableResultDefaultDmnEngine. evaluateDecisionTable(DmnDecision decision, VariableContext variableContext)protected DmnDecisionLogicEvaluationHandlerDefaultDmnDecisionContext. getDecisionEvaluationHandler(DmnDecision decision)protected booleanDefaultDmnDecisionContext. isDecisionTableWithCollectOrRuleOrderHitPolicy(DmnDecision evaluatedDecision)Method parameters in org.camunda.bpm.dmn.engine.impl with type arguments of type DmnDecision Modifier and Type Method Description protected voidDefaultDmnDecisionContext. buildDecisionTree(DmnDecision decision, java.util.List<DmnDecision> requiredDecisions)voidDmnDecisionRequirementsGraphImpl. setDecisions(java.util.Map<java.lang.String,DmnDecision> decisions)voidDmnDecisionImpl. setRequiredDecision(java.util.List<DmnDecision> requiredDecision) -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.impl.delegate
Fields in org.camunda.bpm.dmn.engine.impl.delegate declared as DmnDecision Modifier and Type Field Description protected DmnDecisionDmnDecisionLiteralExpressionEvaluationEventImpl. decisionprotected DmnDecisionDmnDecisionTableEvaluationEventImpl. decisionMethods in org.camunda.bpm.dmn.engine.impl.delegate that return DmnDecision Modifier and Type Method Description DmnDecisionDmnDecisionLiteralExpressionEvaluationEventImpl. getDecision()DmnDecisionDmnDecisionTableEvaluationEventImpl. getDecision()DmnDecisionDmnDecisionTableEvaluationEventImpl. getDecisionTable()Methods in org.camunda.bpm.dmn.engine.impl.delegate with parameters of type DmnDecision Modifier and Type Method Description voidDmnDecisionLiteralExpressionEvaluationEventImpl. setDecision(DmnDecision decision)voidDmnDecisionTableEvaluationEventImpl. setDecisionTable(DmnDecision decision) -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.impl.evaluation
Methods in org.camunda.bpm.dmn.engine.impl.evaluation with parameters of type DmnDecision Modifier and Type Method Description DmnDecisionLogicEvaluationEventDecisionLiteralExpressionEvaluationHandler. evaluate(DmnDecision decision, VariableContext variableContext)DmnDecisionLogicEvaluationEventDecisionTableEvaluationHandler. evaluate(DmnDecision decision, VariableContext variableContext)DmnDecisionLogicEvaluationEventDmnDecisionLogicEvaluationHandler. evaluate(DmnDecision decision, VariableContext variableContext)Evaluate a decision with the givenVariableContext. -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.impl.spi.transform
Methods in org.camunda.bpm.dmn.engine.impl.spi.transform with type parameters of type DmnDecision Modifier and Type Method Description <T extends DmnDecision>
java.util.List<T>DmnTransform. transformDecisions()Transform all decisions of the DMN model instance.Methods in org.camunda.bpm.dmn.engine.impl.spi.transform that return DmnDecision Modifier and Type Method Description DmnDecisionDmnElementTransformContext. getDecision()Methods in org.camunda.bpm.dmn.engine.impl.spi.transform with parameters of type DmnDecision Modifier and Type Method Description voidDmnTransformListener. transformDecision(Decision decision, DmnDecision dmnDecision)Notified after a DMN decision was transformed -
Uses of DmnDecision in org.camunda.bpm.dmn.engine.impl.transform
Methods in org.camunda.bpm.dmn.engine.impl.transform with type parameters of type DmnDecision Modifier and Type Method Description <T extends DmnDecision>
java.util.List<T>DefaultDmnTransform. transformDecisions()Methods in org.camunda.bpm.dmn.engine.impl.transform that return DmnDecision Modifier and Type Method Description DmnDecisionDefaultDmnTransform. getDecision()Methods in org.camunda.bpm.dmn.engine.impl.transform that return types with arguments of type DmnDecision Modifier and Type Method Description protected java.util.List<DmnDecision>DefaultDmnTransform. getRequiredDmnDecisions(Decision decision, java.util.Map<java.lang.String,DmnDecisionImpl> dmnDecisions)protected java.util.List<DmnDecision>DefaultDmnTransform. transformDecisions(java.util.Collection<Decision> decisions)Methods in org.camunda.bpm.dmn.engine.impl.transform with parameters of type DmnDecision Modifier and Type Method Description DmnTransformExceptionDmnTransformLogger. decisionIdIsMissing(DmnDecision dmnDecision)DmnTransformExceptionDmnTransformLogger. decisionTableInputIdIsMissing(DmnDecision dmnDecision, DmnDecisionTableInputImpl dmnDecisionTableInput)DmnTransformExceptionDmnTransformLogger. decisionTableOutputIdIsMissing(DmnDecision dmnDecision, DmnDecisionTableOutputImpl dmnDecisionTableOutput)DmnTransformExceptionDmnTransformLogger. decisionTableRuleIdIsMissing(DmnDecision dmnDecision, DmnDecisionTableRuleImpl dmnDecisionTableRule)protected voidDefaultDmnTransform. ensureNoLoopInDecision(DmnDecision decision, java.util.List<java.lang.String> parentDecisionList, java.util.List<java.lang.String> visitedDecisions)protected voidDefaultDmnTransform. notifyTransformListeners(Decision decision, DmnDecision dmnDecision)Method parameters in org.camunda.bpm.dmn.engine.impl.transform with type arguments of type DmnDecision Modifier and Type Method Description protected voidDefaultDmnTransform. ensureNoLoopInDecisions(java.util.List<DmnDecision> dmnDecisionList) -
Uses of DmnDecision in org.camunda.bpm.engine.impl.dmn.entity.repository
Classes in org.camunda.bpm.engine.impl.dmn.entity.repository that implement DmnDecision Modifier and Type Class Description classDecisionDefinitionEntity -
Uses of DmnDecision in org.camunda.bpm.engine.impl.history.parser
Methods in org.camunda.bpm.engine.impl.history.parser with parameters of type DmnDecision Modifier and Type Method Description protected booleanHistoryDecisionEvaluationListener. isDeployedDecisionTable(DmnDecision decision)
-