Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Public Member Functions | List of all members
Lucene.Net.Search.Spans.Spans Class Referenceabstract

Expert: an enumeration of span matches. Used to implement span searching. Each span represents a range of term positions within a document. Matches are enumerated in order, by increasing document number, within that by increasing start position and finally by increasing end position. More...

Inherited by Lucene.Net.Search.Spans.NearSpansOrdered, Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansUnordered.SpansCell, Lucene.Net.Search.Spans.SpanFirstQuery.AnonymousClassSpans, Lucene.Net.Search.Spans.SpanNotQuery.AnonymousClassSpans, Lucene.Net.Search.Spans.SpanOrQuery.AnonymousClassSpans, and Lucene.Net.Search.Spans.TermSpans.

Public Member Functions

abstract bool Next ()
 Move to the next match, returning true iff any such exists.
 
abstract bool SkipTo (int target)
 Skips to the first match beyond the current, whose document number is greater than or equal to target. Returns true iff there is such a match. Behaves as if written:
 
abstract int Doc ()
 Returns the document number of the current match. Initially invalid.
 
abstract int Start ()
 Returns the start position of the current match. Initially invalid.
 
abstract int End ()
 Returns the end position of the current match. Initially invalid.
 
abstract ICollection< byte[]> GetPayload ()
 Returns the payload data for the current span. This is invalid until Next() is called for the first time. This method must not be called more than once after each call of Next(). However, most payloads are loaded lazily, so if the payload data for the current position is not needed, this method may not be called at all for performance reasons. An ordered SpanQuery does not lazy load, so if you have payloads in your index and you do not want ordered SpanNearQuerys to collect payloads, you can disable collection with a constructor option.

 
abstract bool IsPayloadAvailable ()
 Checks if a payload can be loaded at this position. Payloads can only be loaded once per call to Next().
 

Detailed Description

Expert: an enumeration of span matches. Used to implement span searching. Each span represents a range of term positions within a document. Matches are enumerated in order, by increasing document number, within that by increasing start position and finally by increasing end position.

Definition at line 29 of file Spans.cs.

Member Function Documentation

abstract int Lucene.Net.Search.Spans.Spans.Doc ( )
pure virtual

Returns the document number of the current match. Initially invalid.

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract int Lucene.Net.Search.Spans.Spans.End ( )
pure virtual

Returns the end position of the current match. Initially invalid.

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract ICollection<byte[]> Lucene.Net.Search.Spans.Spans.GetPayload ( )
pure virtual

Returns the payload data for the current span. This is invalid until Next() is called for the first time. This method must not be called more than once after each call of Next(). However, most payloads are loaded lazily, so if the payload data for the current position is not needed, this method may not be called at all for performance reasons. An ordered SpanQuery does not lazy load, so if you have payloads in your index and you do not want ordered SpanNearQuerys to collect payloads, you can disable collection with a constructor option.

Note that the return type is a collection, thus the ordering should not be relied upon.

<font color="#FF0000"> WARNING: The status of the Payloads feature is experimental. The APIs introduced here might change in the future and will not be supported anymore in such a case.</font>

Returns
a List of byte arrays containing the data of this payload, otherwise null if isPayloadAvailable is false

<throws> java.io.IOException </throws>

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract bool Lucene.Net.Search.Spans.Spans.IsPayloadAvailable ( )
pure virtual

Checks if a payload can be loaded at this position. Payloads can only be loaded once per call to Next().

Returns
true if there is a payload available at this position that can be loaded

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract bool Lucene.Net.Search.Spans.Spans.Next ( )
pure virtual

Move to the next match, returning true iff any such exists.

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract bool Lucene.Net.Search.Spans.Spans.SkipTo ( int  target)
pure virtual

Skips to the first match beyond the current, whose document number is greater than or equal to target. Returns true iff there is such a match. Behaves as if written:

boolean skipTo(int target) { do { if (!next()) return false; } while (target > doc()); return true; } Most implementations are considerably more efficient than that.

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.

abstract int Lucene.Net.Search.Spans.Spans.Start ( )
pure virtual

Returns the start position of the current match. Initially invalid.

Implemented in Lucene.Net.Search.Spans.NearSpansUnordered, Lucene.Net.Search.Spans.NearSpansOrdered, and Lucene.Net.Search.Spans.TermSpans.


The documentation for this class was generated from the following file: