Inheritance: Lucene.Net.Search.Query
コード例 #1
0
 internal MatchNoDocsScorer(MatchNoDocsQuery enclosingInstance, IndexReader reader, Similarity similarity, Weight w, byte[] norms)
     : base(similarity)
 {
     this.InitBlock(enclosingInstance);
     this.termDocs = reader.TermDocs((Term)null);
     this.score    = w.Value;
     this.norms    = norms;
 }
コード例 #2
0
 private void InitBlock(MatchNoDocsQuery enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
コード例 #3
0
 public MatchNoDocsWeight(MatchNoDocsQuery enclosingInstance, Searcher searcher)
 {
     this.InitBlock(enclosingInstance);
     this.similarity = searcher.Similarity;
 }
コード例 #4
0
 internal MatchNoDocsScorer(MatchNoDocsQuery enclosingInstance, IndexReader reader, Similarity similarity, Weight w, byte[] norms)
   : base(similarity)
 {
     this.InitBlock(enclosingInstance);
     this.termDocs = reader.TermDocs((Term)null);
     this.score = w.Value;
     this.norms = norms;
 }
コード例 #5
0
 private void InitBlock(MatchNoDocsQuery enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
コード例 #6
0
 public MatchNoDocsWeight(MatchNoDocsQuery enclosingInstance, Searcher searcher)
 {
     this.InitBlock(enclosingInstance);
     this.similarity = searcher.Similarity;
 }