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

Packages that use NamedList
org.apache.solr.client.solrj   
org.apache.solr.client.solrj.embedded   
org.apache.solr.client.solrj.impl   
org.apache.solr.client.solrj.response   
org.apache.solr.common.params   
org.apache.solr.common.util   
org.apache.solr.core   
org.apache.solr.handler   
org.apache.solr.handler.admin   
org.apache.solr.handler.clustering   
org.apache.solr.handler.clustering.carrot2   
org.apache.solr.handler.component   
org.apache.solr.handler.dataimport   
org.apache.solr.handler.extraction   
org.apache.solr.highlight   
org.apache.solr.request   
org.apache.solr.response   
org.apache.solr.search   
org.apache.solr.search.grouping   
org.apache.solr.search.grouping.distributed.shardresultserializer   
org.apache.solr.spelling   
org.apache.solr.spelling.suggest   
org.apache.solr.spelling.suggest.fst   
org.apache.solr.spelling.suggest.jaspell   
org.apache.solr.spelling.suggest.tst   
org.apache.solr.tst   
org.apache.solr.uima.processor   
org.apache.solr.update   
org.apache.solr.update.processor   
org.apache.solr.util   
org.apache.solr.util.plugin   
 

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.embedded
 

Methods in org.apache.solr.client.solrj.embedded that return NamedList
 NamedList<Object> EmbeddedSolrServer.getParsedResponse(SolrQueryRequest req, SolrQueryResponse rsp)
          Deprecated. use BinaryResponseWriter.getParsedResponse(SolrQueryRequest, SolrQueryResponse)
 NamedList<Object> EmbeddedSolrServer.request(SolrRequest request)
           
 

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> CommonsHttpSolrServer.request(SolrRequest request)
          Deprecated. Process the request.
 NamedList<Object> LBHttpSolrServer.request(SolrRequest request)
          Tries to query a live server.
 NamedList<Object> ConcurrentUpdateSolrServer.request(SolrRequest request)
           
 NamedList<Object> HttpSolrServer.request(SolrRequest request)
          Process the request.
 NamedList<Object> StreamingUpdateSolrServer.request(SolrRequest request)
          Deprecated.  
 NamedList<Object> CommonsHttpSolrServer.request(SolrRequest request, ResponseParser processor)
          Deprecated.  
 NamedList<Object> HttpSolrServer.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 FieldAnalysisResponse.setResponse(NamedList<Object> response)
          
 void QueryResponse.setResponse(NamedList<Object> res)
           
 void SolrResponseBase.setResponse(NamedList<Object> response)
           
 void DocumentAnalysisResponse.setResponse(NamedList<Object> response)
          
 void LukeResponse.setResponse(NamedList<Object> res)
           
 

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)
           
 

Uses of NamedList in org.apache.solr.core
 

Fields in org.apache.solr.core declared as NamedList
 NamedList PluginInfo.initArgs
           
 

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.
 NamedList SolrCore.getStatistics()
           
 

Methods in org.apache.solr.core with parameters of type NamedList
 void IndexReaderFactory.init(NamedList args)
          Potentially initializes IndexReaderFactory.termInfosIndexDivisor.
 void SolrDeletionPolicy.init(NamedList args)
           
 void SolrCore.LazyQueryResponseWriterWrapper.init(NamedList args)
           
 void MMapDirectoryFactory.init(NamedList args)
           
 void DirectoryFactory.init(NamedList args)
           
 

Constructors in org.apache.solr.core with parameters of type NamedList
PluginInfo(String type, Map<String,String> attrs, NamedList initArgs, List<PluginInfo> children)
           
SolrCore.LazyQueryResponseWriterWrapper(SolrCore core, String className, NamedList args)
           
 

Uses of NamedList in org.apache.solr.handler
 

Fields in org.apache.solr.handler declared as NamedList
protected  NamedList RequestHandlerBase.initArgs
           
 

Methods in org.apache.solr.handler that return NamedList
protected  NamedList<List<NamedList>> AnalysisRequestHandlerBase.analyzeValue(String value, AnalysisRequestHandlerBase.AnalysisContext context)
          Analyzes the given value using the given Analyzer.
protected abstract  NamedList AnalysisRequestHandlerBase.doAnalysis(SolrQueryRequest req)
          Performs the analysis based on the given solr request and returns the analysis result as a named list.
protected  NamedList DocumentAnalysisRequestHandler.doAnalysis(SolrQueryRequest req)
          Performs the analysis based on the given solr request and returns the analysis result as a named list.
protected  NamedList FieldAnalysisRequestHandler.doAnalysis(SolrQueryRequest req)
          Performs the analysis based on the given solr request and returns the analysis result as a named list.
 NamedList RequestHandlerBase.getInitArgs()
           
 NamedList<DocList> MoreLikeThisHandler.MoreLikeThisHelper.getMoreLikeThese(DocList docs, int rows, int flags)
          Deprecated. 
 NamedList ReplicationHandler.getStatistics()
           
 NamedList RequestHandlerBase.getStatistics()
           
protected  NamedList<NamedList> FieldAnalysisRequestHandler.handleAnalysisRequest(FieldAnalysisRequest request, IndexSchema schema)
          Handles the resolved analysis request and returns the analysis breakdown response as a named list.
 

Methods in org.apache.solr.handler that return types with arguments of type NamedList
protected  NamedList<List<NamedList>> AnalysisRequestHandlerBase.analyzeValue(String value, AnalysisRequestHandlerBase.AnalysisContext context)
          Analyzes the given value using the given Analyzer.
protected  NamedList<NamedList> FieldAnalysisRequestHandler.handleAnalysisRequest(FieldAnalysisRequest request, IndexSchema schema)
          Handles the resolved analysis request and returns the analysis breakdown response as a named list.
 

Methods in org.apache.solr.handler with parameters of type NamedList
 void DocumentAnalysisRequestHandler.init(NamedList args)
           
 void AnalysisRequestHandler.init(NamedList args)
          Deprecated.  
 void XsltUpdateRequestHandler.init(NamedList args)
           
 void JsonUpdateRequestHandler.init(NamedList args)
           
 void MoreLikeThisHandler.init(NamedList args)
           
 void XmlUpdateRequestHandler.init(NamedList args)
           
 void RequestHandlerBase.init(NamedList args)
          Initializes the SolrRequestHandler by creating three SolrParams named.
 void SpellCheckerRequestHandler.init(NamedList args)
          Deprecated.  
 void DisMaxRequestHandler.init(NamedList args)
          Deprecated.  
 

Constructors in org.apache.solr.handler with parameters of type NamedList
SnapPuller(NamedList initArgs, ReplicationHandler handler, SolrCore sc)
           
 

Uses of NamedList in org.apache.solr.handler.admin
 

Methods in org.apache.solr.handler.admin that return NamedList
protected  NamedList<Object> CoreAdminHandler.getCoreStatus(CoreContainer cores, String cname)
           
 NamedList AdminHandlers.getStatistics()
           
 

Methods in org.apache.solr.handler.admin with parameters of type NamedList
 void CoreAdminHandler.init(NamedList args)
           
 void AdminHandlers.init(NamedList args)
          Save the args and pass them to each standard handler
 void ShowFileRequestHandler.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.handler.clustering
 

Methods in org.apache.solr.handler.clustering that return NamedList
abstract  NamedList DocumentClusteringEngine.cluster(DocSet docs, SolrParams solrParams)
          Experimental.
abstract  NamedList DocumentClusteringEngine.cluster(SolrParams solrParams)
          Experimental.
 

Methods in org.apache.solr.handler.clustering with parameters of type NamedList
 void ClusteringComponent.init(NamedList args)
           
 String ClusteringEngine.init(NamedList config, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.handler.clustering.carrot2
 

Methods in org.apache.solr.handler.clustering.carrot2 with parameters of type NamedList
 String CarrotClusteringEngine.init(NamedList config, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.handler.component
 

Fields in org.apache.solr.handler.component declared as NamedList
protected  NamedList SpellCheckComponent.initParams
           
protected  NamedList TermVectorComponent.initParams
           
 

Methods in org.apache.solr.handler.component that return NamedList
 NamedList TermsComponent.TermsHelper.buildResponse()
           
 NamedList<Object> ResponseBuilder.getDebugInfo()
           
 NamedList SearchComponent.getStatistics()
           
 NamedList<?> StatsValues.getStatsValues()
          Translates the values into a NamedList representation
protected  NamedList SpellCheckComponent.toNamedList(boolean shardRequest, SpellingResult spellingResult, String origQuery, boolean extendedResults, boolean collate)
           
 

Methods in org.apache.solr.handler.component with parameters of type NamedList
 void StatsValues.accumulate(NamedList stv)
          Accumulate the values based on those in the given NamedList
protected  void SpellCheckComponent.addCollationsToResponse(SolrParams params, SpellingResult spellingResult, ResponseBuilder rb, String q, NamedList response)
           
 void SpellCheckComponent.init(NamedList args)
           
 void QueryElevationComponent.init(NamedList args)
           
 void SearchComponent.init(NamedList args)
           
 void TermVectorComponent.init(NamedList args)
           
 void TermsComponent.TermsHelper.parse(NamedList terms)
           
 void ResponseBuilder.setDebugInfo(NamedList<Object> debugInfo)
           
 

Uses of NamedList in org.apache.solr.handler.dataimport
 

Methods in org.apache.solr.handler.dataimport that return NamedList
 NamedList DataImportHandler.getStatistics()
           
 

Methods in org.apache.solr.handler.dataimport with parameters of type NamedList
 void DataImportHandler.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.handler.extraction
 

Methods in org.apache.solr.handler.extraction with parameters of type NamedList
 void ExtractingRequestHandler.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.highlight
 

Methods in org.apache.solr.highlight that return NamedList
 NamedList<Object> DefaultSolrHighlighter.doHighlighting(DocList docs, Query query, SolrQueryRequest req, String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
abstract  NamedList<Object> SolrHighlighter.doHighlighting(DocList docs, Query query, SolrQueryRequest req, String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
 NamedList HighlightingPluginBase.getStatistics()
           
 

Methods in org.apache.solr.highlight with parameters of type NamedList
 void HighlightingPluginBase.init(NamedList args)
           
 void SolrFormatter.init(NamedList args)
          init will be called just once, immediately after creation.
 void SolrFragListBuilder.init(NamedList args)
          init will be called just once, immediately after creation.
 void RegexFragmenter.init(NamedList args)
           
 void SolrEncoder.init(NamedList args)
          init will be called just once, immediately after creation.
 void SolrFragmenter.init(NamedList args)
          init will be called just once, immediately after creation.
 

Uses of NamedList in org.apache.solr.request
 

Methods in org.apache.solr.request that return NamedList
 NamedList UnInvertedField.getCounts(SolrIndexSearcher searcher, DocSet baseDocs, int offset, int limit, Integer mincount, boolean missing, String sort, String prefix)
           
 NamedList SimpleFacets.getFacetCounts()
          Looks at various Params to determing if any simple Facet Constraint count computations are desired.
 NamedList SimpleFacets.getFacetDateCounts()
          Deprecated. Use getFacetRangeCounts which is more generalized
 NamedList SimpleFacets.getFacetFieldCounts()
          Returns a list of value constraints and the associated facet counts for each facet field specified in the params.
 NamedList SimpleFacets.getFacetQueryCounts()
          Returns a list of facet counts for each of the facet queries specified in the params
 NamedList SimpleFacets.getFacetRangeCounts()
          Returns a list of value constraints and the associated facet counts for each facet numerical field, range, and interval specified in the SolrParams
 NamedList SimpleFacets.getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, String sort, 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, String fieldName, int offset, int limit, int mincount, boolean missing, String sort, String prefix)
          Use the Lucene FieldCache to get counts for each unique field value in docs.
 NamedList SimpleFacets.getTermCounts(String field)
           
 

Methods in org.apache.solr.request with parameters of type NamedList
 void SimpleFacets.getFacetDateCounts(String dateFacet, NamedList resOuter)
          Deprecated. Use getFacetRangeCounts which is more generalized
 void SolrRequestHandler.init(NamedList args)
          init will be called just once, immediately after creation.
 

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

Uses of NamedList in org.apache.solr.response
 

Fields in org.apache.solr.response declared as NamedList
protected  NamedList SolrQueryResponse.toLog
          Container for storing information that should be logged by Solr before returning.
protected  NamedList SolrQueryResponse.values
          Container for user defined values
 

Methods in org.apache.solr.response that return NamedList
static NamedList<Object> BinaryResponseWriter.getParsedResponse(SolrQueryRequest req, SolrQueryResponse rsp)
          TODO -- there may be a way to do this without marshal at all...
 NamedList SolrQueryResponse.getResponseHeader()
          Repsonse header to be logged
 NamedList SolrQueryResponse.getToLog()
          Get loggable items.
 NamedList SolrQueryResponse.getValues()
          Gets data to be returned in this response
 

Methods in org.apache.solr.response with parameters of type NamedList
 void JSONResponseWriter.init(NamedList namedList)
           
 void QueryResponseWriter.init(NamedList args)
          init will be called just once, immediately after creation.
 void XMLResponseWriter.init(NamedList n)
           
 void PythonResponseWriter.init(NamedList n)
           
 void XSLTResponseWriter.init(NamedList n)
           
 void BaseResponseWriter.init(NamedList args)
          Deprecated. No ops implementation so that the implementing classes do not have to do it
 void BinaryResponseWriter.init(NamedList args)
           
 void PHPSerializedResponseWriter.init(NamedList n)
           
 void CSVResponseWriter.init(NamedList n)
           
 void PHPResponseWriter.init(NamedList n)
           
 void RawResponseWriter.init(NamedList n)
           
 void RubyResponseWriter.init(NamedList n)
           
 void SolrQueryResponse.setAllValues(NamedList nameValuePairs)
          Sets data to be returned in this response
abstract  void TextResponseWriter.writeNamedList(String name, NamedList val)
           
 void XMLWriter.writeNamedList(String name, NamedList val)
           
 void BaseResponseWriter.SingleResponseWriter.writeResponseHeader(NamedList responseHeader)
          This method defines how to output the SolrQueryResponse header which is provided as a NamedList parameter.
 

Uses of NamedList in org.apache.solr.search
 

Methods in org.apache.solr.search that return NamedList
protected  NamedList Grouping.Command.commonResponse()
           
 NamedList SolrIndexSearcher.getStatistics()
           
 NamedList LFUCache.getStatistics()
           
 NamedList SolrFieldCacheMBean.getStatistics()
           
 NamedList FastLRUCache.getStatistics()
           
 NamedList LRUCache.getStatistics()
           
 

Methods in org.apache.solr.search with parameters of type NamedList
 void QParser.addDebugInfo(NamedList<Object> debugInfo)
           
 void DisMaxQParser.addDebugInfo(NamedList<Object> debugInfo)
           
protected  void Grouping.Command.addDocList(NamedList rsp, GroupDocs groups)
           
 void NestedQParserPlugin.init(NamedList args)
           
 void FunctionQParserPlugin.init(NamedList args)
           
 void PrefixQParserPlugin.init(NamedList args)
           
 void FieldQParserPlugin.init(NamedList args)
           
 void SpatialBoxQParserPlugin.init(NamedList args)
           
 void DisMaxQParserPlugin.init(NamedList args)
           
 void OldLuceneQParserPlugin.init(NamedList args)
           
 void FunctionRangeQParserPlugin.init(NamedList args)
           
 void TermQParserPlugin.init(NamedList args)
           
 void RawQParserPlugin.init(NamedList args)
           
 void BoostQParserPlugin.init(NamedList args)
           
 void ValueSourceParser.init(NamedList args)
          Initialize the plugin.
 void SpatialFilterQParserPlugin.init(NamedList args)
           
 void LuceneQParserPlugin.init(NamedList args)
           
 void ExtendedDismaxQParserPlugin.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.search.grouping
 

Methods in org.apache.solr.search.grouping that return NamedList
 NamedList CommandHandler.processResult(SolrIndexSearcher.QueryResult queryResult, ShardResultTransformer transformer)
           
 

Uses of NamedList in org.apache.solr.search.grouping.distributed.shardresultserializer
 

Methods in org.apache.solr.search.grouping.distributed.shardresultserializer that return NamedList
protected  NamedList TopGroupsResultTransformer.serializeTopDocs(QueryCommandResult result)
           
protected  NamedList TopGroupsResultTransformer.serializeTopGroups(TopGroups<String> data, SchemaField groupField)
           
 NamedList SearchGroupsResultTransformer.transform(List<Command> data)
          Transforms data to a NamedList structure for serialization purposes.
 NamedList TopGroupsResultTransformer.transform(List<Command> data)
          Transforms data to a NamedList structure for serialization purposes.
 NamedList ShardResultTransformer.transform(T data)
          Transforms data to a NamedList structure for serialization purposes.
 

Methods in org.apache.solr.search.grouping.distributed.shardresultserializer with parameters of type NamedList
 Map<String,Collection<SearchGroup<String>>> SearchGroupsResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 Map<String,?> TopGroupsResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 R ShardResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 

Method parameters in org.apache.solr.search.grouping.distributed.shardresultserializer with type arguments of type NamedList
 Map<String,Collection<SearchGroup<String>>> SearchGroupsResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 Map<String,?> TopGroupsResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 R ShardResultTransformer.transformToNative(NamedList<NamedList> shardResponse, Sort groupSort, Sort sortWithinGroup, String shard)
          Transforms the specified shard response into native structures.
 

Uses of NamedList in org.apache.solr.spelling
 

Methods in org.apache.solr.spelling that return NamedList
 NamedList<String> SpellCheckCollation.getMisspellingsAndCorrections()
           
 

Methods in org.apache.solr.spelling with parameters of type NamedList
 void QueryConverter.init(NamedList args)
           
 String FileBasedSpellChecker.init(NamedList config, SolrCore core)
           
 String IndexBasedSpellChecker.init(NamedList config, SolrCore core)
           
 String AbstractLuceneSpellChecker.init(NamedList config, SolrCore core)
           
 String SolrSpellChecker.init(NamedList config, SolrCore core)
           
 void SpellCheckCollation.setMisspellingsAndCorrections(NamedList<String> misspellingsAndCorrections)
           
 

Uses of NamedList in org.apache.solr.spelling.suggest
 

Methods in org.apache.solr.spelling.suggest with parameters of type NamedList
abstract  Lookup LookupFactory.create(NamedList params, SolrCore core)
           
 String Suggester.init(NamedList config, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.spelling.suggest.fst
 

Methods in org.apache.solr.spelling.suggest.fst with parameters of type NamedList
 Lookup WFSTLookupFactory.create(NamedList params, SolrCore core)
           
 Lookup FSTLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.spelling.suggest.jaspell
 

Methods in org.apache.solr.spelling.suggest.jaspell with parameters of type NamedList
 Lookup JaspellLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.spelling.suggest.tst
 

Methods in org.apache.solr.spelling.suggest.tst with parameters of type NamedList
 Lookup TSTLookupFactory.create(NamedList params, SolrCore core)
           
 

Uses of NamedList in org.apache.solr.tst
 

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

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

Uses of NamedList in org.apache.solr.uima.processor
 

Methods in org.apache.solr.uima.processor with parameters of type NamedList
 void UIMAUpdateRequestProcessorFactory.init(NamedList args)
           
 

Constructors in org.apache.solr.uima.processor with parameters of type NamedList
SolrUIMAConfigurationReader(NamedList<Object> args)
           
 

Uses of NamedList in org.apache.solr.update
 

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

Uses of NamedList in org.apache.solr.update.processor
 

Methods in org.apache.solr.update.processor with parameters of type NamedList
 void TikaLanguageIdentifierUpdateProcessorFactory.init(NamedList args)
          The UpdateRequestProcessor may be initialized in solrconfig.xml similarly to a RequestHandler, with defaults, appends and invariants.
 void LangDetectLanguageIdentifierUpdateProcessorFactory.init(NamedList args)
          The UpdateRequestProcessor may be initialized in solrconfig.xml similarly to a RequestHandler, with defaults, appends and invariants.
 void UniqFieldsUpdateProcessorFactory.init(NamedList args)
           
 void URLClassifyProcessorFactory.init(NamedList args)
           
 void SignatureUpdateProcessorFactory.init(NamedList args)
           
 void LogUpdateProcessorFactory.init(NamedList args)
           
 void UpdateRequestProcessorFactory.init(NamedList args)
           
 

Uses of NamedList in org.apache.solr.util
 

Subclasses of NamedList in org.apache.solr.util
 class NamedList<T>
          Deprecated. Use org.apache.solr.common.util.NamedList.
 

Methods in org.apache.solr.util that return NamedList
static NamedList HighlightingUtils.doHighlighting(DocList docs, Query query, SolrQueryRequest req, String[] defaultFields)
          Deprecated. use DefaultSolrHighlighter
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, String userQuery, Query query, DocList results)
           Returns a NamedList containing many "standard" pieces of debugging information.
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, String userQuery, Query query, DocList results, CommonParams params)
          Deprecated. Use doStandardDebug(SolrQueryRequest,String,Query,DocList) with setDefaults
static NamedList<NamedList<Object>> SolrPluginUtils.explanationsToNamedLists(NamedList<Explanation> explanations)
           
static NamedList<Object> SolrPluginUtils.explanationToNamedList(Explanation e)
           
static NamedList SolrPluginUtils.getExplainList(Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Deprecated. this returns the explanations as Strings, instead it is recommeded to use getExplanations and call toString() yourself, or use explanationsToNamedLists
static NamedList<Explanation> SolrPluginUtils.getExplanations(Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Generates an NamedList of Explanations for each item in a list of docs.
 

Methods in org.apache.solr.util that return types with arguments of type NamedList
static NamedList<NamedList<Object>> SolrPluginUtils.explanationsToNamedLists(NamedList<Explanation> explanations)
           
 

Methods in org.apache.solr.util with parameters of type NamedList
static NamedList<NamedList<Object>> SolrPluginUtils.explanationsToNamedLists(NamedList<Explanation> explanations)
           
static void SolrPluginUtils.invokeSetters(Object bean, NamedList initArgs)
           
 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.  
 

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

Methods in org.apache.solr.util.plugin with parameters of type NamedList
 void NamedListInitializedPlugin.init(NamedList args)