/// <summary> Returns the docFreq of the current Term in the enumeration.
 /// Initially invalid, valid after next() called for the first time.
 /// </summary>
 public override int DocFreq()
 {
     if (actualEnum == null)
     {
         return(-1);
     }
     return(actualEnum.DocFreq());
 }
Exemple #2
0
 public override int DocFreq()
 {
     return(in_Renamed.DocFreq());
 }