Class SpellEngine
java.lang.Object
com.aquima.interactions.spellengine.model.SpellEngine
- All Implemented Interfaces:
ISpellEngine
,Serializable
Spell engine implementation.
- Since:
- 6.0
- Author:
- Jon van Leuven
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSpellEngine
(ISpellEngineDS datasource) Constructor to create a spell engine based on a datasource. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addSpeller
(SpellerDefinition definition) This method add a speller to the spell engine.getSpeller
(String spellerName) This method returns a speller.String[]
This method returns the names of all available spellers in the spell engine.
-
Constructor Details
-
SpellEngine
Constructor to create a spell engine based on a datasource.- Parameters:
datasource
- The data source used for initialization.- Throws:
InitializationException
- Is thrown when the speller failed initialization.
-
-
Method Details
-
addSpeller
This method add a speller to the spell engine. Should only be used during initialization.- Parameters:
definition
- Speller definition to add.
-
getSpeller
Description copied from interface:ISpellEngine
This method returns a speller.- Specified by:
getSpeller
in interfaceISpellEngine
- Parameters:
spellerName
- The speller name used for lookup.- Returns:
- Speller The speller
- Throws:
UnknownSpellerException
- Is thrown when the speller does not exist.
-
getSpellerNames
Description copied from interface:ISpellEngine
This method returns the names of all available spellers in the spell engine.- Specified by:
getSpellerNames
in interfaceISpellEngine
- Returns:
- The names of the available spellers, never null
-