Package com.aquima.interactions.dtree
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getScore()
The score function represents the match value of the decisiontree.IMultilingualText
getTreeDescription()
The display text of the decision tree which is ready for display.String
getTreeName()
Returns the decision tree name for the entry.boolean
isExposedAsWebservice()
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
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()
-
-