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.Util.NumericUtils.IntRangeBuilder Class Reference

Expert: Callback for SplitIntRange. You need to overwrite only one of the methods. <font color="red">NOTE: This is a very low-level interface, the method signatures may change in later versions.</font> More...

Public Member Functions

virtual void AddRange (System.String minPrefixCoded, System.String maxPrefixCoded)
 Overwrite this method, if you like to receive the already prefix encoded range bounds. You can directly build classical range (inclusive) queries from them.
 
virtual void AddRange (int min, int max, int shift)
 Overwrite this method, if you like to receive the raw int range bounds. You can use this for e.g. debugging purposes (print out range bounds).
 

Detailed Description

Expert: Callback for SplitIntRange. You need to overwrite only one of the methods.

<font color="red">NOTE: This is a very low-level interface, the method signatures may change in later versions.</font>

Definition at line 468 of file NumericUtils.cs.

Member Function Documentation

virtual void Lucene.Net.Util.NumericUtils.IntRangeBuilder.AddRange ( System.String  minPrefixCoded,
System.String  maxPrefixCoded 
)
virtual

Overwrite this method, if you like to receive the already prefix encoded range bounds. You can directly build classical range (inclusive) queries from them.

Definition at line 474 of file NumericUtils.cs.

virtual void Lucene.Net.Util.NumericUtils.IntRangeBuilder.AddRange ( int  min,
int  max,
int  shift 
)
virtual

Overwrite this method, if you like to receive the raw int range bounds. You can use this for e.g. debugging purposes (print out range bounds).

Definition at line 482 of file NumericUtils.cs.


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