Class TrigramFunction
java.lang.Object
com.aquima.interactions.dtree.impl.TrigramFunction
Implementation of trigram matching. For internal use only.
This can later be replaced with a decent match engine implementation.
- Since:
- 5.1
- Author:
- F. van der Meer.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionTrigramFunction
(String text) Constructs the trigram function with the string that should be matched against.protected
TrigramFunction
(String text, boolean caseInsensitive) -
Method Summary
-
Constructor Details
-
TrigramFunction
-
TrigramFunction
Constructs the trigram function with the string that should be matched against.
Note: This method is public to allow test-cases to access it, but the class is internal and should not be used outside the decision tree engine.
- Parameters:
text
- The string that should be matched against.
-
-
Method Details
-
match
This method will match the given string to the string this match function contains.
Note: This method is public to allow test-cases to access it, but the class is internal and should not be used outside the decision tree engine.
- Parameters:
other
- The string that should be matched.- Returns:
- Double containing the result of the match, a percentage between zero and 100.
-