public interface SearchMode
Dictionary
supports some
search modes, which take different parameters. Each instance of this interface describes
a search mode and the parameters which it needs to be executed. The same search mode
objects can be used by different dictionary implementations. The search mode interface
does not describe how a dictionary implements a search using a given search mode. It is
up to the Dictionary
implementor to choose an appropriate algorithm.Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Return a short explanation of the search mode.
|
String |
getName()
Returns the name of the search mode, suitable for presenting to the user.
|
List<SearchParameter> |
getParameters()
Return the list of parameters which are needed for a search using this search mode
to be executed.
|
String getName()
String getDescription()
List<SearchParameter> getParameters()
Copyright © 2001-2013 the JGloss developers. All Rights Reserved.