Interface DmnDecisionResult

    • Method Detail

      • collectEntries

        <T> List<T> collectEntries​(String outputName)
        Collects the entries for a output name. The list will contain entries for the output name of every DmnDecisionResultEntries. Note that the list may contains less entries than decision results if an output does not contain a value for the output name.
        Type Parameters:
        T - the type of the result entry
        Parameters:
        outputName - the name of the output to collect
        Returns:
        the list of collected output values
      • getSingleEntry

        <T> T getSingleEntry()
        Returns the value of the single entry of the decision result. Asserts that only one decision result with a single entry exist.
        Type Parameters:
        T - the type of the result entry
        Returns:
        the value of the single result entry or null if none exists
        Throws:
        DmnEngineException - if more than one decision result or more than one result entry exists
        See Also:
        getSingleEntryTyped()
      • getSingleEntryTyped

        <T extends TypedValue> T getSingleEntryTyped()
        Returns the typed value of the single entry of the decision result. Asserts that only one decision result with a single entry exist.
        Type Parameters:
        T - the type of the result entry
        Returns:
        the typed value of the single result entry or null if none exists
        Throws:
        DmnEngineException - if more than one decision result or more than one result entry exists
        See Also:
        getSingleEntry()