Uses of Class
gov.nist.nlpir.irf.query.QueryRep

Packages that use QueryRep
gov.nist.nlpir.irf.document classes and interfaces that model documents and collections of documents 
gov.nist.nlpir.irf.result classes that model the result of a search as a hierarchy of nested results corresponding to the structure of the query 
 

Uses of QueryRep in gov.nist.nlpir.irf.document
 

Methods in gov.nist.nlpir.irf.document with parameters of type QueryRep
 java.util.Vector ProxyDocument.makeResultsForDocMatchingQuery(QueryRep query, java.util.Vector collPartialResults)
          Makes a complete result for documents matching the supplied query from the partial results supplied.
 java.util.Vector Document.makeResultsForDocMatchingQuery(QueryRep query, java.util.Vector collPartialResults)
          Makes a complete result for documents matching the supplied query from the partial results supplied.
 java.util.Vector DocumentIntrf.makeResultsForDocMatchingQuery(QueryRep query, java.util.Vector collPartialResults)
          Makes a complete result for documents matching the supplied query from the partial results supplied.
 

Uses of QueryRep in gov.nist.nlpir.irf.result
 

Fields in gov.nist.nlpir.irf.result declared as QueryRep
private  QueryRep ResultForDocMatchingQuery.query
          The query associated with this result
 

Methods in gov.nist.nlpir.irf.result that return QueryRep
 QueryRep ResultForDocMatchingQuery.getQuery()
          Returns the query
 

Methods in gov.nist.nlpir.irf.result with parameters of type QueryRep
 double ResultForDocMatchingQuery.calcRSV(QueryRep aQueryRep)
          Calculates the final Retrieval Status Value for a document by combining the scores obtained for each term in the query across all indexes.
 

Constructors in gov.nist.nlpir.irf.result with parameters of type QueryRep
ResultForDocMatchingQuery.ResultForDocMatchingQuery(QueryRep q, ProxyDocument d, java.util.Vector results)
          Creates a ResultForDocMatchingQuery for the supplied query, doc and results.