C# Class Lucene.Net.Codecs.BlockTerms.TermsIndexReaderBase.FieldIndexEnum

Similar to TermsEnum, except, the only "metadata" it reports for a given indexed term is the long fileOffset into the main terms dictionary file.
Datei anzeigen Open project: paulirwin/lucene.net Class Usage Examples

Public Methods

Method Description
Seek ( BytesRef term ) : long

Seeks to "largest" indexed term that's less than or equal to term; returns file pointer index (into the main terms index file) for that term

Seek ( long ord ) : long

Only implemented if {@link TermsIndexReaderBase.supportsOrd()} returns true

Method Details

Seek() public abstract method

Seeks to "largest" indexed term that's less than or equal to term; returns file pointer index (into the main terms index file) for that term
public abstract Seek ( BytesRef term ) : long
term BytesRef
return long

Seek() public abstract method

Only implemented if {@link TermsIndexReaderBase.supportsOrd()} returns true
public abstract Seek ( long ord ) : long
ord long
return long