Uses of Class
de.unidu.is.retrieval.Query

Packages that use Query
de.unidu.is.retrieval Provides a unique interface for interacting an with XML retrieval engines. 
de.unidu.is.retrieval.hyrex Provides classes for interacting with the HyREX XML retrieval engine. 
de.unidu.is.retrieval.lemur Provides classes for interacting with the Lemur retrieval engine (from UMass/CMU). 
de.unidu.is.retrieval.pire Provides the PIRE retrieval engine. 
de.unidu.is.retrieval.pire.examples Examples for PIRE. 
 

Uses of Query in de.unidu.is.retrieval
 

Subclasses of Query in de.unidu.is.retrieval
 class KeywordQuery
          A keyword-based query.
 class StructuredQuery
          A XIRQL structured (Boolean-style) query, defined by a tree/graph on query nodes.
 class WSumQuery
          A XIRQL weighted-sum query.
 class XIRQLQuery
          An abstract XIRQL query.
 class XIRQLStringQuery
          A XIRQL query defined by a string.
 

Methods in de.unidu.is.retrieval with parameters of type Query
 java.util.List AbstractRetriever.getResultSummaries(Query query)
          Returns a summarised result for the specified query.
 java.util.List Async2SyncRetriever.getResult(Query query)
           
 java.util.List Async2SyncRetriever.getResultSummaries(Query query)
           
 void AsyncRetriever.getResultCall(AsyncCallResponseListener listener, Query query)
          Asynchronous variant of getResult
 void AsyncRetriever.getResultSummariesCall(AsyncCallResponseListener listener, Query query)
          Asynchronous variant of getResultSummaries
 java.util.List Retriever.getResult(Query query)
          Returns result for the specified query.
 java.util.List Retriever.getResultSummaries(Query query)
          Returns a summarised result for the specified query.
 void Sync2AsyncRetriever.getResultCall(AsyncCallResponseListener listener, Query query)
           
 void Sync2AsyncRetriever.getResultSummariesCall(AsyncCallResponseListener listener, Query query)
           
 

Uses of Query in de.unidu.is.retrieval.hyrex
 

Methods in de.unidu.is.retrieval.hyrex with parameters of type Query
 java.util.List HyREXRetriever.getResult(Query query)
          Returns result for the specified query.
 

Uses of Query in de.unidu.is.retrieval.lemur
 

Methods in de.unidu.is.retrieval.lemur with parameters of type Query
 void Lemur.createTopicFile(java.lang.String topicsName, Query query, boolean append)
          Creates a topic file (with the terms in it) in TREC format for the specified node.
 void Lemur.createTopicFile(java.io.File topicFile, Query query, boolean append)
          Creates a topic file (with the terms in it) in TREC format for the specified node.
 java.util.List Lemur.getResult(java.lang.String coll, Query query, int mode, int numDocs, boolean doLog)
          Returns the result for the specified query.
 java.util.List[] Lemur.getCORIResult(java.lang.String[] colls, Query query, int numDocs, int numDLs, boolean doLog)
          Returns the result for the specified query after resource selection with CORI.
 

Uses of Query in de.unidu.is.retrieval.pire
 

Methods in de.unidu.is.retrieval.pire with parameters of type Query
 java.util.List PDatalogIR.getResult(Query query)
          Returns result for the specified query.
 Moments PDatalogIR.getMoments(Query query)
          Returns the expectation and the variance of the RSVs for the specified query.
 

Uses of Query in de.unidu.is.retrieval.pire.examples
 

Methods in de.unidu.is.retrieval.pire.examples that return Query
static Query PIREExampleUtils.getWSumQuery()
          Returns an example weighted sum query.
static Query PIREExampleUtils.getBooleanQuery()
          Returns an example Boolean-style query.
 

Methods in de.unidu.is.retrieval.pire.examples with parameters of type Query
static void PIREExampleUtils.retrieveAndPrint(Retriever retriever, Query query)
          Performs retrieval w.r.t. the specified query, and prints the results to STDOUT.