Interface AlgorithmResult

All Known Implementing Classes:
DefaultAlgorithmResult

public interface AlgorithmResult
An AlgorithmResult is a map of results that were computed by a CalculatingAlgorithm. It maps the name of a result to the corresponding value.
Version:
$Revision: 1.5 $
See Also:
CalculatingAlgorithm
  • Method Summary

    Modifier and Type Method Description
    void addToResult​(String key, Object value)
    Adds a key-value pair to the Map.
    Map<?,​?> getResult()
    Returns the Map.
  • Method Details

    • getResult

      Map<?,​?> getResult()
      Returns the Map. This function is intended to be used by other components that want to display the results.
      Returns:
      DOCUMENT ME!
    • addToResult

      void addToResult​(String key, Object value)
      Adds a key-value pair to the Map.
      Parameters:
      key - the key for the result.
      value - the value of the result.