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

Packages that use NamedList
org.apache.solr.client.solrj   
org.apache.solr.client.solrj.impl   
org.apache.solr.client.solrj.response   
org.apache.solr.common.params   
org.apache.solr.common.util   
 

Uses of NamedList in org.apache.solr.client.solrj
 

Methods in org.apache.solr.client.solrj that return NamedList
abstract  NamedList<Object> SolrResponse.getResponse()
           
abstract  NamedList<Object> ResponseParser.processResponse(InputStream body, String encoding)
           
abstract  NamedList<Object> ResponseParser.processResponse(Reader reader)
           
abstract  NamedList<Object> SolrServer.request(SolrRequest request)
          SolrServer implementations need to implement how a request is actually processed
 

Methods in org.apache.solr.client.solrj with parameters of type NamedList
abstract  void SolrResponse.setResponse(NamedList<Object> rsp)
           
 

Uses of NamedList in org.apache.solr.client.solrj.impl
 

Methods in org.apache.solr.client.solrj.impl that return NamedList
 NamedList<Object> XMLResponseParser.processResponse(InputStream in, String encoding)
           
 NamedList<Object> BinaryResponseParser.processResponse(InputStream body, String encoding)
           
 NamedList<Object> XMLResponseParser.processResponse(Reader in)
           
 NamedList<Object> BinaryResponseParser.processResponse(Reader reader)
           
protected  NamedList<Object> XMLResponseParser.readNamedList(javax.xml.stream.XMLStreamReader parser)
           
 NamedList<Object> LBHttpSolrServer.request(SolrRequest request)
          Tries to query a live server.
 NamedList<Object> StreamingUpdateSolrServer.request(SolrRequest request)
           
 NamedList<Object> CommonsHttpSolrServer.request(SolrRequest request)
          Process the request.
 NamedList<Object> CommonsHttpSolrServer.request(SolrRequest request, ResponseParser processor)
           
 

Uses of NamedList in org.apache.solr.client.solrj.response
 

Methods in org.apache.solr.client.solrj.response that return NamedList
 NamedList<NamedList<Object>> CoreAdminResponse.getCoreStatus()
           
 NamedList<Object> CoreAdminResponse.getCoreStatus(String core)
           
 NamedList<Object> QueryResponse.getHeader()
           
 NamedList<Object> LukeResponse.getIndexInfo()
           
 NamedList<Object> SolrResponseBase.getResponse()
           
 NamedList SolrResponseBase.getResponseHeader()
           
 NamedList<ArrayList> QueryResponse.getSortValues()
           
 NamedList<Integer> LukeResponse.FieldInfo.getTopTerms()
           
 

Methods in org.apache.solr.client.solrj.response that return types with arguments of type NamedList
 NamedList<NamedList<Object>> CoreAdminResponse.getCoreStatus()
           
 

Methods in org.apache.solr.client.solrj.response with parameters of type NamedList
protected  List<AnalysisResponseBase.AnalysisPhase> AnalysisResponseBase.buildPhases(NamedList<Object> phaseNL)
          Parses the given named list and builds a list of analysis phases form it.
protected  AnalysisResponseBase.TokenInfo AnalysisResponseBase.buildTokenInfo(NamedList tokenNL)
          Parses the given named list and builds a token infoform it.
 void LukeResponse.FieldTypeInfo.read(NamedList<Object> nl)
           
 void LukeResponse.FieldInfo.read(NamedList<Object> nl)
           
 void LukeResponse.setResponse(NamedList<Object> res)
           
 void SolrResponseBase.setResponse(NamedList<Object> response)
           
 void QueryResponse.setResponse(NamedList<Object> res)
           
 void FieldAnalysisResponse.setResponse(NamedList<Object> response)
          
 void DocumentAnalysisResponse.setResponse(NamedList<Object> response)
          
 

Constructors in org.apache.solr.client.solrj.response with parameters of type NamedList
FieldStatsInfo(NamedList<Object> nl, String fname)
           
QueryResponse(NamedList<Object> res, SolrServer solrServer)
          Utility constructor to set the solrServer and namedList
SpellCheckResponse.Suggestion(String token, NamedList<Object> suggestion)
           
SpellCheckResponse(NamedList<Object> spellInfo)
           
TermsResponse(NamedList<Object> termsInfo)
           
 

Uses of NamedList in org.apache.solr.common.params
 

Methods in org.apache.solr.common.params that return NamedList
 NamedList<Object> SolrParams.toNamedList()
          Convert this to a NamedList
 

Methods in org.apache.solr.common.params with parameters of type NamedList
static Map<String,String> SolrParams.toMap(NamedList params)
          Create a Map from a NamedList given no keys are repeated
static Map<String,String[]> SolrParams.toMultiMap(NamedList params)
          Create a Map from a NamedList
static SolrParams SolrParams.toSolrParams(NamedList params)
          Create SolrParams from NamedList.
 

Uses of NamedList in org.apache.solr.common.util
 

Subclasses of NamedList in org.apache.solr.common.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.common.util that return NamedList
 NamedList RTimer.asNamedList()
           
static NamedList<Object> DOMUtil.childNodesToNamedList(Node nd)
           
 NamedList<T> NamedList.clone()
          Makes a shallow copy of the named list.
static NamedList<Object> DOMUtil.nodesToNamedList(NodeList nlst)
           
 NamedList JavaBinCodec.readNamedList(FastInputStream dis)
           
 

Methods in org.apache.solr.common.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(Node nd, NamedList nlst, List arr)
          Examines a Node from the DOM representation of a NamedList and adds the contents of that node to both the specified NamedList and List passed as arguments.
 void JavaBinCodec.writeNamedList(NamedList nl)
           
 



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.