Class QueryValueSource


  • public class QueryValueSource
    extends ValueSource
    QueryValueSource returns the relevance score of the query
    • Constructor Detail

      • QueryValueSource

        public QueryValueSource​(Query q,
                                float defVal)
    • Method Detail

      • getQuery

        public Query getQuery()
      • getDefaultValue

        public float getDefaultValue()
      • getValues

        public FunctionValues getValues​(Map fcontext,
                                        LeafReaderContext readerContext)
                                 throws IOException
        Description copied from class: ValueSource
        Gets the values for this reader and the context that was previously passed to createWeight(). The values must be consumed in a forward docID manner, and you must call this method again to iterate through the values again.
        Specified by:
        getValues in class ValueSource
        Throws:
        IOException
      • createWeight

        public void createWeight​(Map context,
                                 IndexSearcher searcher)
                          throws IOException
        Description copied from class: ValueSource
        Implementations should propagate createWeight to sub-ValueSources which can optionally store weight info in the context. The context object will be passed to getValues() where this info can be retrieved.
        Overrides:
        createWeight in class ValueSource
        Throws:
        IOException