public interface DmnDecisionResult extends List<DmnDecisionResultEntries>, Serializable
The result of one decision evaluation. It can be composed of multiple
DmnDecisionResultEntries
s which represents the output entries (i.e.,
pairs of output name and value).
In case of a decision with a decision table, the result has one
DmnDecisionResultEntries
for each matched rule that contains the
output entries of this rule.
Modifier and Type | Method and Description |
---|---|
<T> List<T> |
collectEntries(String outputName)
Collects the entries for a output name.
|
DmnDecisionResultEntries |
getFirstResult()
Returns the first
DmnDecisionResultEntries . |
List<Map<String,Object>> |
getResultList()
Returns the entries of all decision results.
|
<T> T |
getSingleEntry()
Returns the value of the single entry of the decision result.
|
<T extends org.camunda.bpm.engine.variable.value.TypedValue> |
getSingleEntryTyped()
Returns the typed value of the single entry of the decision result.
|
DmnDecisionResultEntries |
getSingleResult()
Returns the single
DmnDecisionResultEntries of the result. |
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
DmnDecisionResultEntries getFirstResult()
DmnDecisionResultEntries
.DmnDecisionResultEntries getSingleResult()
DmnDecisionResultEntries
of the result. Asserts
that only one decision result exist.DmnEngineException
- if more than one decision result exists<T> List<T> collectEntries(String outputName)
DmnDecisionResultEntries
. Note that the
list may contains less entries than decision results if an output does not
contain a value for the output name.T
- the type of the result entryoutputName
- the name of the output to collectList<Map<String,Object>> getResultList()
DmnDecisionResultEntries.getEntryMap()
<T> T getSingleEntry()
T
- the type of the result entryDmnEngineException
- if more than one decision result or more than one result entry
existsgetSingleEntryTyped()
<T extends org.camunda.bpm.engine.variable.value.TypedValue> T getSingleEntryTyped()
T
- the type of the result entryDmnEngineException
- if more than one decision result or more than one result entry
existsgetSingleEntry()
Copyright © 2022. All rights reserved.