Uses of Class
org.apache.solr.util.NamedList

Packages that use NamedList
org.apache.solr.core   
org.apache.solr.handler   
org.apache.solr.request   
org.apache.solr.search   
org.apache.solr.tst   
org.apache.solr.update   
org.apache.solr.util   
 

Uses of NamedList in org.apache.solr.core
 

Methods in org.apache.solr.core that return NamedList
 NamedList SolrInfoMBean.getStatistics()
          Any statistics this instance would like to be publicly available via the Solr Administration interface.
 

Methods in org.apache.solr.core with parameters of type NamedList
 void SolrEventListener.init(NamedList args)
           
protected  void SolrCore.setResponseHeaderValues(SolrRequestHandler handler, NamedList<java.lang.Object> responseHeader, SolrQueryRequest req, SolrQueryResponse rsp)
           
 

Uses of NamedList in org.apache.solr.handler
 

Methods in org.apache.solr.handler that return NamedList
 NamedList RequestHandlerBase.getStatistics()
           
 NamedList XmlUpdateRequestHandler.update(java.io.Reader reader)
           
 

Methods in org.apache.solr.handler with parameters of type NamedList
 void XmlUpdateRequestHandler.init(NamedList args)
           
 void SpellCheckerRequestHandler.init(NamedList args)
           
 void RequestHandlerBase.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.request
 

Fields in org.apache.solr.request declared as NamedList
protected  NamedList SolrQueryResponse.values
          Container for user defined values
 

Methods in org.apache.solr.request that return NamedList
 NamedList SimpleFacets.getFacetCounts()
          Looks at various Params to determing if any simple Facet Constraint count computations are desired.
 NamedList SimpleFacets.getFacetFieldCounts()
          Returns a list of value constraints and the associated facet counts for each facet field specified in the params.
protected  NamedList StandardRequestHandler.getFacetInfo(SolrQueryRequest req, SolrQueryResponse rsp, DocSet mainSet)
          Fetches information about Facets for this request.
protected  NamedList DisMaxRequestHandler.getFacetInfo(SolrQueryRequest req, SolrQueryResponse rsp, DocSet mainSet)
          Fetches information about Facets for this request.
 NamedList SimpleFacets.getFacetQueryCounts()
          Returns a list of facet counts for each of the facet queries specified in the params
 NamedList SimpleFacets.getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, java.lang.String field, int offset, int limit, int mincount, boolean missing, boolean sort, java.lang.String prefix)
          Returns a list of terms in the specified field along with the corresponding count of documents in the set that match that constraint.
static NamedList SimpleFacets.getFieldCacheCounts(SolrIndexSearcher searcher, DocSet docs, java.lang.String fieldName, int offset, int limit, int mincount, boolean missing, boolean sort, java.lang.String prefix)
          Use the Lucene FieldCache to get counts for each unique field value in docs.
 NamedList SimpleFacets.getTermCounts(java.lang.String field)
           
 NamedList SolrQueryResponse.getValues()
          Gets data to be returned in this response
 NamedList<java.lang.Object> SolrParams.toNamedList()
          Convert this to a NamedList
 

Methods in org.apache.solr.request with parameters of type NamedList
 void XSLTResponseWriter.init(NamedList n)
           
 void XMLResponseWriter.init(NamedList n)
           
 void SolrRequestHandler.init(NamedList args)
          init will be called just once, immediately after creation.
 void RubyResponseWriter.init(NamedList n)
           
 void QueryResponseWriter.init(NamedList args)
          init will be called just once, immediately after creation.
 void PythonResponseWriter.init(NamedList n)
           
 void JSONResponseWriter.init(NamedList n)
           
 void DisMaxRequestHandler.init(NamedList args)
          Sets the default variables for any useful info it finds in the config.
 void SolrQueryResponse.setAllValues(NamedList nameValuePairs)
          Sets data to be returned in this response
static java.util.Map<java.lang.String,java.lang.String> SolrParams.toMap(NamedList params)
          Create a Map from a NamedList given no keys are repeated
static java.util.Map<java.lang.String,java.lang.String[]> SolrParams.toMultiMap(NamedList params)
          Create a Map from a NamedList
static SolrParams SolrParams.toSolrParams(NamedList params)
          Create SolrParams from NamedList.
 void XMLWriter.writeNamedList(java.lang.String name, NamedList val)
           
abstract  void TextResponseWriter.writeNamedList(java.lang.String name, NamedList val)
           
 

Constructors in org.apache.solr.request with parameters of type NamedList
LocalSolrQueryRequest(SolrCore core, NamedList args)
           
 

Uses of NamedList in org.apache.solr.search
 

Methods in org.apache.solr.search that return NamedList
 NamedList SolrIndexSearcher.getStatistics()
           
 NamedList LRUCache.getStatistics()
           
 

Uses of NamedList in org.apache.solr.tst
 

Methods in org.apache.solr.tst that return NamedList
 NamedList TestRequestHandler.getStatistics()
           
 NamedList OldRequestHandler.getStatistics()
           
 

Methods in org.apache.solr.tst with parameters of type NamedList
 void TestRequestHandler.init(NamedList args)
           
 void OldRequestHandler.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.update
 

Methods in org.apache.solr.update that return NamedList
 NamedList DirectUpdateHandler2.getStatistics()
           
 NamedList DirectUpdateHandler.getStatistics()
           
 

Uses of NamedList in org.apache.solr.util
 

Subclasses of NamedList in org.apache.solr.util
 class SimpleOrderedMap<T>
          SimpleOrderedMap is a NamedList where access by key is more important than maintaining order when it comes to representing the held data in other forms, as ResponseWriters normally do.
 

Methods in org.apache.solr.util that return NamedList
static NamedList DOMUtil.childNodesToNamedList(org.w3c.dom.Node nd)
           
 NamedList<T> NamedList.clone()
          Makes a shallow copy of the named list.
static NamedList HighlightingUtils.doHighlighting(DocList docs, org.apache.lucene.search.Query query, SolrQueryRequest req, java.lang.String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, java.lang.String userQuery, org.apache.lucene.search.Query query, DocList results)
           Returns a NamedList containing many "standard" pieces of debugging information.
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, java.lang.String userQuery, org.apache.lucene.search.Query query, DocList results, CommonParams params)
          Deprecated. Use doStandardDebug(SolrQueryRequest,String,Query,DocList) with setDefaults
static NamedList SolrPluginUtils.getExplainList(org.apache.lucene.search.Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Generates an list of Explanations for each item in a list of docs.
static NamedList DOMUtil.nodesToNamedList(org.w3c.dom.NodeList nlst)
           
 

Methods in org.apache.solr.util with parameters of type NamedList
 boolean NamedList.addAll(NamedList<T> nl)
          Appends the elements of the given NamedList to this one.
static void DOMUtil.addToNamedList(org.w3c.dom.Node nd, NamedList nlst, java.util.List arr)
           
 void DisMaxParams.setValues(NamedList args)
          Deprecated. use SolrParams.toSolrParams
 void CommonParams.setValues(NamedList args)
          Deprecated. Sets the params using values from a NamedList, usefull in the init method for your handler.
 

Constructors in org.apache.solr.util with parameters of type NamedList
CommonParams(NamedList args)
          Deprecated.  
 



Copyright © 2006 - 2009 The Apache Software Foundation