Метод | Описание | |
---|---|---|
Document ( int docID, StoredFieldVisitor visitor ) : void | ||
GetBinaryDocValues ( string field ) : BinaryDocValues | ||
GetDocsWithField ( string field ) : Bits | ||
GetNormValues ( string field ) : NumericDocValues | ||
GetNumericDocValues ( string field ) : NumericDocValues | ||
GetSortedDocValues ( string field ) : SortedDocValues | ||
GetSortedSetDocValues ( string field ) : SortedSetDocValues | ||
GetTermVectors ( int docID ) : Fields | ||
Wrap ( AtomicReader reader, Lucene.Net.Search.Sort sort ) : AtomicReader |
Return a sorted view of reader according to the order defined by sort. If the reader is already sorted, this method might return the reader as-is.
|
Метод | Описание | |
---|---|---|
SortingAtomicReader ( AtomicReader @in, Lucene.Net.Util.Sorter docMap ) : System | ||
Wrap ( AtomicReader reader, Lucene.Net.Util.Sorter docMap ) : AtomicReader |
Expert: same as Wrap(AtomicReader, Sort) but operates directly on a Sorter.DocMap.
|
public Document ( int docID, StoredFieldVisitor visitor ) : void | ||
docID | int | |
visitor | StoredFieldVisitor | |
Результат | void |
public GetBinaryDocValues ( string field ) : BinaryDocValues | ||
field | string | |
Результат | BinaryDocValues |
public GetDocsWithField ( string field ) : Bits | ||
field | string | |
Результат | Bits |
public GetNormValues ( string field ) : NumericDocValues | ||
field | string | |
Результат | NumericDocValues |
public GetNumericDocValues ( string field ) : NumericDocValues | ||
field | string | |
Результат | NumericDocValues |
public GetSortedDocValues ( string field ) : SortedDocValues | ||
field | string | |
Результат | SortedDocValues |
public GetSortedSetDocValues ( string field ) : SortedSetDocValues | ||
field | string | |
Результат | SortedSetDocValues |
public GetTermVectors ( int docID ) : Fields | ||
docID | int | |
Результат | Fields |
public static Wrap ( AtomicReader reader, Lucene.Net.Search.Sort sort ) : AtomicReader | ||
reader | AtomicReader | |
sort | Lucene.Net.Search.Sort | |
Результат | AtomicReader |