Class Scorable

    • Constructor Detail

      • Scorable

        public Scorable()
    • Method Detail

      • score

        public abstract float score()
                             throws IOException
        Returns the score of the current document matching the query.
        Throws:
        IOException
      • docID

        public abstract int docID()
        Returns the doc ID that is currently being scored.
      • setMinCompetitiveScore

        public void setMinCompetitiveScore​(float minScore)
                                    throws IOException
        Optional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the given minScore. This is a no-op by default. This method may only be called from collectors that use ScoreMode.TOP_SCORES, and successive calls may only set increasing values of minScore.
        Throws:
        IOException