Class ExplainAugmenterFactory
- java.lang.Object
-
- org.apache.solr.response.transform.TransformerFactory
-
- org.apache.solr.response.transform.ExplainAugmenterFactory
-
- All Implemented Interfaces:
NamedListInitializedPlugin
public class ExplainAugmenterFactory extends TransformerFactory
- Since:
- solr 4.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExplainAugmenterFactory.Style-
Nested classes/interfaces inherited from class org.apache.solr.response.transform.TransformerFactory
TransformerFactory.FieldRenamer
-
-
Field Summary
Fields Modifier and Type Field Description protected ExplainAugmenterFactory.StyledefaultStyle-
Fields inherited from class org.apache.solr.response.transform.TransformerFactory
defaultFactories, defaultUserArgs
-
-
Constructor Summary
Constructors Constructor Description ExplainAugmenterFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DocTransformercreate(String field, org.apache.solr.common.params.SolrParams params, SolrQueryRequest req)static ExplainAugmenterFactory.StylegetStyle(String str)voidinit(org.apache.solr.common.util.NamedList<?> args)initwill be called just once, immediately after creation.static StringtoHtml(org.apache.lucene.search.Explanation explanation)Render an explanation as HTML.
-
-
-
Field Detail
-
defaultStyle
protected ExplainAugmenterFactory.Style defaultStyle
-
-
Method Detail
-
init
public void init(org.apache.solr.common.util.NamedList<?> args)
Description copied from interface:NamedListInitializedPlugininitwill be called just once, immediately after creation.Source of the initialization arguments will typically be solrconfig.xml, but will ultimately depends on the plugin itself
- Specified by:
initin interfaceNamedListInitializedPlugin- Overrides:
initin classTransformerFactory- Parameters:
args- non-null list of initialization parameters (may be empty)
-
getStyle
public static ExplainAugmenterFactory.Style getStyle(String str)
-
create
public DocTransformer create(String field, org.apache.solr.common.params.SolrParams params, SolrQueryRequest req)
- Specified by:
createin classTransformerFactory
-
toHtml
public static String toHtml(org.apache.lucene.search.Explanation explanation)
Render an explanation as HTML.
-
-