Uses of Class
org.apache.wiki.api.search.QueryItem
-
Packages that use QueryItem Package Description org.apache.wiki.api.providers Page Providers' API package of JSPWiki.org.apache.wiki.providers Provides storage for JSPWiki.org.apache.wiki.search Provides the JSPWiki search functionality. -
-
Uses of QueryItem in org.apache.wiki.api.providers
Methods in org.apache.wiki.api.providers with parameters of type QueryItem Modifier and Type Method Description java.util.Collection<Attachment>
AttachmentProvider. findAttachments(QueryItem[] query)
Finds attachments based on the query.java.util.Collection<SearchResult>
PageProvider. findPages(QueryItem[] query)
Finds pages based on the query. -
Uses of QueryItem in org.apache.wiki.providers
Methods in org.apache.wiki.providers with parameters of type QueryItem Modifier and Type Method Description java.util.Collection<Attachment>
BasicAttachmentProvider. findAttachments(QueryItem[] query)
Finds attachments based on the query.java.util.Collection<Attachment>
CachingAttachmentProvider. findAttachments(QueryItem[] query)
Finds attachments based on the query.java.util.Collection<Attachment>
WikiAttachmentAdapterProvider. findAttachments(QueryItem[] query)
Deprecated.Finds attachments based on the query.java.util.Collection<SearchResult>
AbstractFileProvider. findPages(QueryItem[] query)
Iterates through all WikiPages, matches them against the given query, and returns a Collection of SearchResult objects.java.util.Collection<SearchResult>
CachingProvider. findPages(QueryItem[] query)
Finds pages based on the query.java.util.Collection<SearchResult>
WikiPageAdapterProvider. findPages(QueryItem[] query)
Deprecated.Finds pages based on the query. -
Uses of QueryItem in org.apache.wiki.search
Subclasses of QueryItem in org.apache.wiki.search Modifier and Type Class Description class
QueryItem
Deprecated.- useQueryItem
insteadMethods in org.apache.wiki.search that return QueryItem Modifier and Type Method Description QueryItem[]
BasicSearchProvider. parseQuery(java.lang.String query)
Parses a query into something that we can use.Constructors in org.apache.wiki.search with parameters of type QueryItem Constructor Description SearchMatcher(Engine engine, QueryItem[] queries)
Creates a new SearchMatcher.
-