Uses of Class
com.sun.labs.minion.QueryConfig

Packages that use QueryConfig
com.sun.labs.minion Provides the API for interacting with the Minion Search Engine. 
com.sun.labs.minion.engine Provides implementations for some of the end-user interfaces. 
com.sun.labs.minion.indexer.partition Provides the classes that implement the partitions of the indexer. 
com.sun.labs.minion.retrieval Provides the query evaluation capabilities for Minion. 
 

Uses of QueryConfig in com.sun.labs.minion
 

Methods in com.sun.labs.minion that return QueryConfig
 QueryConfig SearchEngine.getQueryConfig()
          Gets the query configuration that the engine is currently using.
 

Methods in com.sun.labs.minion with parameters of type QueryConfig
 void SearchEngine.setQueryConfig(QueryConfig queryConfig)
          Sets the query configuration to use for subsequent queries.
 

Uses of QueryConfig in com.sun.labs.minion.engine
 

Fields in com.sun.labs.minion.engine declared as QueryConfig
protected  QueryConfig SearchEngineImpl.queryConfig
          The configuration for the query engine.
 

Methods in com.sun.labs.minion.engine that return QueryConfig
 QueryConfig SearchEngineImpl.getQC()
           
 QueryConfig SearchEngineImpl.getQueryConfig()
          Gets the query configuration being used by this search engine.
 

Methods in com.sun.labs.minion.engine with parameters of type QueryConfig
 void SearchEngineImpl.setQueryConfig(QueryConfig queryConfig)
           
 

Uses of QueryConfig in com.sun.labs.minion.indexer.partition
 

Methods in com.sun.labs.minion.indexer.partition that return QueryConfig
 QueryConfig Partition.getQueryConfig()
          Gets a set of statistics for the collection holding this partition.
 QueryConfig PartitionManager.getQueryConfig()
          Gets the query configuration for this manager.
 

Uses of QueryConfig in com.sun.labs.minion.retrieval
 

Fields in com.sun.labs.minion.retrieval declared as QueryConfig
protected  QueryConfig QueryElement.qc
          The query configuration for this particular query.
protected  QueryConfig ResultSetImpl.qc
          The configuration used for the query that generated this results set.
 

Methods in com.sun.labs.minion.retrieval with parameters of type QueryConfig
 java.util.List QueryEvaluator.eval(java.util.List parts, QueryConfig qc, java.lang.String name, Relation.Operator op, java.lang.String value)
          Evaluates a field term.
 void MultiDictTerm.setQueryConfig(QueryConfig qc)
          Set the query config for all the sub-terms.
 void Operator.setQueryConfig(QueryConfig qc)
          Sets the current query configuration.
 void QueryElement.setQueryConfig(QueryConfig qc)
          Sets the current query configuration.
 void QueryTerm.setQueryConfig(QueryConfig qc)
          Sets the query configuration for this term.
 

Constructors in com.sun.labs.minion.retrieval with parameters of type QueryConfig
ResultSetImpl(QueryElement query, QueryConfig qc, QueryStats qs, java.util.List partitions, SearchEngine e)
          Creates a result set for the given query by evaluating the query.
ResultSetImpl(SearchEngine e, QueryConfig qc, java.util.List results)
          Creates a result set from a list of groups.