Interface ISearchEntry

All Superinterfaces:
Comparable<ISearchEntry>, Serializable
All Known Implementing Classes:
SearchEntry

public interface ISearchEntry extends Serializable, Comparable<ISearchEntry>
This interface describes a matching decisiontree with a match-score.
Since:
5.1
Author:
F. van der Meer
  • Method Details

    • getTreeName

      String getTreeName()
      Returns the decision tree name for the entry.
      Returns:
      A string holding the name of the Decision Tree.
    • getTreeDescription

      IMultilingualText getTreeDescription()
      The display text of the decision tree which is ready for display.
      Returns:
      A MultiLingualText for the decision-tree. Which is never null
    • getScore

      double getScore()
      The score function represents the match value of the decisiontree. A higher value indicates a better match then a lower value. A value of 100.0 means the match is exact. While 0.0 means no match at all.
      Returns:
      A score value ranging from 0.0 to 100.0
    • isExposedAsWebservice

      boolean isExposedAsWebservice()