java.lang.Object | |
↳ | com.esri.core.symbol.advanced.SymbolDictionaryQuery |
The SymbolDictionaryQuery class is used to build up queries against the symbol dictionary to return a list of
symbols.
You can search symbols by filtering the dictionary with SymbolDictionaryFilter
s and/or keywords.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
SymbolDictionaryQuery() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void |
addFilter(SymbolDictionaryFilter filter)
Adds a filter to the query.
| ||||||||||
void |
addKeyword(String keyword)
Adds a keyword to the query.
| ||||||||||
void |
clear()
Clears the query (removes all filters and keywords).
| ||||||||||
List<SymbolDictionaryFilter> |
getFilters()
Returns all the filters currently held in the query.
| ||||||||||
List<String> |
getKeywords()
Returns all the keywords currently held in the query.
| ||||||||||
void |
removeFilter(SymbolDictionaryFilter filter)
Removes the filter passed in parameter from the query.
| ||||||||||
void |
removeKeyword(String keyword)
Removes the keyword passed in parameter from the query.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Adds a filter to the query.
filter | the SymbolDictionaryFilter to add |
---|
Adds a keyword to the query.
keyword | the keyword to add |
---|
Clears the query (removes all filters and keywords).
Returns all the filters currently held in the query.
Returns all the keywords currently held in the query.
List
of keywordsRemoves the filter passed in parameter from the query.
filter | the SymbolDictionaryFilter to remove |
---|
Removes the keyword passed in parameter from the query.
keyword | the keyword to remove |
---|