Uses of Interface
gate.creole.annic.apache.lucene.search.Weight

Packages that use Weight
gate.creole.annic.apache.lucene.search Search over indices. 
 

Uses of Weight in gate.creole.annic.apache.lucene.search
 

Classes in gate.creole.annic.apache.lucene.search that implement Weight
private  class BooleanQuery.BooleanWeight
           
private  class PhraseQuery.PhraseWeight
           
private  class TermQuery.TermWeight
           
 

Fields in gate.creole.annic.apache.lucene.search declared as Weight
private  Weight PhraseScorer.weight
           
private  Weight TermScorer.weight
           
 

Methods in gate.creole.annic.apache.lucene.search that return Weight
protected  Weight BooleanQuery.createWeight(Searcher searcher)
           
protected  Weight PhraseQuery.createWeight(Searcher searcher)
           
protected  Weight Query.createWeight(Searcher searcher)
          Expert: Constructs an appropriate Weight implementation for this query.
protected  Weight TermQuery.createWeight(Searcher searcher)
           
 Weight Query.weight(Searcher searcher)
          Expert: Constructs an initializes a Weight for a top-level query.
 

Constructors in gate.creole.annic.apache.lucene.search with parameters of type Weight
ExactPhraseScorer(Weight weight, TermPositions[] tps, Similarity similarity, byte[] norms)
           
ExactPhraseScorer(Weight weight, TermPositions[] tps, Vector positions, int totalTerms, Similarity similarity, byte[] norms, Searcher searcher)
           
PhraseScorer(Weight weight, TermPositions[] tps, Similarity similarity, byte[] norms)
           
PhraseScorer(Weight weight, TermPositions[] tps, Vector positions, Similarity similarity, byte[] norms, Searcher searcher)
           
SloppyPhraseScorer(Weight weight, TermPositions[] tps, Similarity similarity, int slop, byte[] norms)
           
TermScorer(Weight weight, TermDocs td, Similarity similarity, byte[] norms, Term term)