Package org.camunda.bpm.dmn.engine
Interface DmnDecisionRequirementsGraph
- All Known Implementing Classes:
DecisionRequirementsDefinitionEntity
,DmnDecisionRequirementsGraphImpl
public interface DmnDecisionRequirementsGraph
Container of
DmnDecision
s which belongs to the same decision
requirements graph (i.e. DMN resource).-
Method Summary
Modifier and TypeMethodDescriptiongetDecision
(String key) Gets the containing decision with the given key.Get the keys of the containing decisions.Gets the containing decisions.getKey()
The unique identifier of the diagram if exists.getName()
The human readable name of the diagram if exists.
-
Method Details
-
getKey
String getKey()The unique identifier of the diagram if exists.- Returns:
- the identifier or null if not set
-
getName
String getName()The human readable name of the diagram if exists.- Returns:
- the name or null if not set
-
getDecisions
Collection<DmnDecision> getDecisions()Gets the containing decisions.- Returns:
- the containing decisions
-
getDecision
Gets the containing decision with the given key.- Parameters:
key
- the identifier of the decision- Returns:
- the decision or null if not exists
-
getDecisionKeys
Get the keys of the containing decisions.- Returns:
- the decision keys.
-