Searched defs:Scorer (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/highlight/
H A DScorer.java25 * A Scorer is responsible for scoring a stream of tokens. These token scores
28 public interface Scorer { interface
31 * Called to init the Scorer with a {@link TokenStream}. You can grab references to
61 * the Scorer returns the weighting it has derived for the most recent
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DScorer.java28 * A <code>Scorer</code> iterates over documents matching a
42 public abstract class Scorer extends DocIdSetIterator { class in inherits:DocIdSetIterator
47 * Constructs a Scorer
50 protected Scorer(Weight weight) { method in class:Scorer
54 /** Constructs a Scorer.
56 * @deprecated Use {@link #Scorer(Weight)} instead.
59 protected Scorer(Similarity similarity) { method in class:Scorer
64 * Constructs a Scorer
67 * @deprecated Use {@link #Scorer(Weight)} instead.
70 protected Scorer(Similarit method in class:Scorer
[all...]

Completed in 724 milliseconds