Method | Description | |
---|---|---|
CheckIntegrity ( ) : void |
Checks consistency of this reader. Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files. @lucene.internal
|
|
DocFreq ( Lucene.Net.Index.Term term ) : int | ||
GetBinaryDocValues ( string field ) : Lucene.Net.Index.BinaryDocValues |
Returns BinaryDocValues for this field, or null if no BinaryDocValues were indexed for this field. The returned instance should only be used by a single thread.
|
|
GetDocCount ( string field ) : int | ||
GetDocsWithField ( string field ) : Bits |
Returns a Bits at the size of
|
|
GetNormValues ( string field ) : Lucene.Net.Index.NumericDocValues |
Returns NumericDocValues representing norms for this field, or null if no NumericDocValues were indexed. The returned instance should only be used by a single thread.
|
|
GetNumericDocValues ( string field ) : Lucene.Net.Index.NumericDocValues |
Returns NumericDocValues for this field, or null if no NumericDocValues were indexed for this field. The returned instance should only be used by a single thread.
|
|
GetSortedDocValues ( string field ) : Lucene.Net.Index.SortedDocValues |
Returns SortedDocValues for this field, or null if no SortedDocValues were indexed for this field. The returned instance should only be used by a single thread.
|
|
GetSortedSetDocValues ( string field ) : Lucene.Net.Index.SortedSetDocValues |
Returns SortedSetDocValues for this field, or null if no SortedSetDocValues were indexed for this field. The returned instance should only be used by a single thread.
|
|
GetSumDocFreq ( string field ) : long | ||
GetSumTotalTermFreq ( string field ) : long | ||
HasNorms ( string field ) : bool |
Returns true if there are norms stored for this field.
|
|
TermDocsEnum ( Lucene.Net.Index.Term term ) : Lucene.Net.Index.DocsEnum |
Returns DocsEnum for the specified term. this will return null if either the field or term does not exist.
|
|
TermPositionsEnum ( Lucene.Net.Index.Term term ) : Lucene.Net.Index.DocsAndPositionsEnum |
Returns DocsAndPositionsEnum for the specified term. this will return null if the field or term does not exist or positions weren't indexed.
|
|
Terms ( string field ) : Lucene.Net.Index.Terms |
this may return null if the field does not exist.
|
|
TotalTermFreq ( Lucene.Net.Index.Term term ) : long |
Returns the number of documents containing the term
|
Method | Description | |
---|---|---|
AtomicReader ( ) : System.Diagnostics |
Sole constructor. (For invocation by subclass constructors, typically implicit.)
|
Method | Description | |
---|---|---|
InitializeInstanceFields ( ) : void |
protected AtomicReader ( ) : System.Diagnostics | ||
return | System.Diagnostics |
public final DocFreq ( Lucene.Net.Index.Term term ) : int | ||
term | Lucene.Net.Index.Term | |
return | int |
public abstract GetBinaryDocValues ( string field ) : Lucene.Net.Index.BinaryDocValues | ||
field | string | |
return | Lucene.Net.Index.BinaryDocValues |
public final GetDocCount ( string field ) : int | ||
field | string | |
return | int |
public abstract GetDocsWithField ( string field ) : Bits | ||
field | string | |
return | Bits |
public abstract GetNormValues ( string field ) : Lucene.Net.Index.NumericDocValues | ||
field | string | |
return | Lucene.Net.Index.NumericDocValues |
public abstract GetNumericDocValues ( string field ) : Lucene.Net.Index.NumericDocValues | ||
field | string | |
return | Lucene.Net.Index.NumericDocValues |
public abstract GetSortedDocValues ( string field ) : Lucene.Net.Index.SortedDocValues | ||
field | string | |
return | Lucene.Net.Index.SortedDocValues |
public abstract GetSortedSetDocValues ( string field ) : Lucene.Net.Index.SortedSetDocValues | ||
field | string | |
return | Lucene.Net.Index.SortedSetDocValues |
public final GetSumDocFreq ( string field ) : long | ||
field | string | |
return | long |
public final GetSumTotalTermFreq ( string field ) : long | ||
field | string | |
return | long |
public TermDocsEnum ( Lucene.Net.Index.Term term ) : Lucene.Net.Index.DocsEnum | ||
term | Lucene.Net.Index.Term | |
return | Lucene.Net.Index.DocsEnum |
public TermPositionsEnum ( Lucene.Net.Index.Term term ) : Lucene.Net.Index.DocsAndPositionsEnum | ||
term | Lucene.Net.Index.Term | |
return | Lucene.Net.Index.DocsAndPositionsEnum |
public Terms ( string field ) : Lucene.Net.Index.Terms | ||
field | string | |
return | Lucene.Net.Index.Terms |
public final TotalTermFreq ( Lucene.Net.Index.Term term ) : long | ||
term | Lucene.Net.Index.Term | |
return | long |