Class DocTransformers
- java.lang.Object
-
- org.apache.solr.response.transform.DocTransformer
-
- org.apache.solr.response.transform.DocTransformers
-
public class DocTransformers extends DocTransformer
Transform a document before it gets sent out
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.response.transform.DocTransformer
DocTransformer.NoopFieldTransformer
-
-
Field Summary
-
Fields inherited from class org.apache.solr.response.transform.DocTransformer
context
-
-
Constructor Summary
Constructors Constructor Description DocTransformers()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTransformer(DocTransformer a)StringgetName()DocTransformergetTransformer(int idx)booleanneedsSolrIndexSearcher()Returns true if and only if at least 1 child transformer returns truevoidsetContext(ResultContext context)This is called beforeDocTransformer.transform(org.apache.solr.common.SolrDocument, int, float)to provide context for any subsequent transformations.intsize()voidtransform(SolrDocument doc, int docid)This is where implementations do the actual work.voidtransform(SolrDocument doc, int docid, float score)This is where implementations do the actual work.-
Methods inherited from class org.apache.solr.response.transform.DocTransformer
getExtraRequestFields, toString
-
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein classDocTransformer- Returns:
- The name of the transformer
-
addTransformer
public void addTransformer(DocTransformer a)
-
size
public int size()
-
getTransformer
public DocTransformer getTransformer(int idx)
-
setContext
public void setContext(ResultContext context)
Description copied from class:DocTransformerThis is called beforeDocTransformer.transform(org.apache.solr.common.SolrDocument, int, float)to provide context for any subsequent transformations.- Overrides:
setContextin classDocTransformer- Parameters:
context- TheResultContextstores information about how the documents were produced.- See Also:
DocTransformer.needsSolrIndexSearcher()
-
transform
public void transform(SolrDocument doc, int docid, float score) throws IOException
Description copied from class:DocTransformerThis is where implementations do the actual work. If implementations require a valid docId and index access, theDocTransformer.needsSolrIndexSearcher()method must return true Default implementation callsDocTransformer.transform(SolrDocument, int).- Overrides:
transformin classDocTransformer- Parameters:
doc- The document to alterdocid- The Lucene internal doc id, or -1 in cases where thedocdid not come from the indexscore- the score for this document- Throws:
IOException- If there is a low-level I/O error.- See Also:
DocTransformer.needsSolrIndexSearcher()
-
transform
public void transform(SolrDocument doc, int docid) throws IOException
Description copied from class:DocTransformerThis is where implementations do the actual work. If implementations require a valid docId and index access, theDocTransformer.needsSolrIndexSearcher()method must return true- Specified by:
transformin classDocTransformer- Parameters:
doc- The document to alterdocid- The Lucene internal doc id, or -1 in cases where thedocdid not come from the index- Throws:
IOException- If there is a low-level I/O error.- See Also:
DocTransformer.needsSolrIndexSearcher()
-
needsSolrIndexSearcher
public boolean needsSolrIndexSearcher()
Returns true if and only if at least 1 child transformer returns true- Overrides:
needsSolrIndexSearcherin classDocTransformer- See Also:
ResultContext.getSearcher(),DocTransformer.transform(org.apache.solr.common.SolrDocument, int, float)
-
-