Class Range
Base class for a single labeled range.
Inherited Members
Namespace: Lucene.Net.Facet.Range
Assembly: Lucene.Net.Facet.dll
Syntax
public abstract class RangeConstructors
| Improve this Doc View SourceRange(String)
Sole constructor.
Declaration
protected Range(string label)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | label | 
Properties
| Improve this Doc View SourceLabel
Label that identifies this range.
Declaration
public string Label { get; }Property Value
| Type | Description | 
|---|---|
| System.String | 
Methods
| Improve this Doc View SourceFailNoMatch()
Invoke this for a useless range.
Declaration
protected virtual void FailNoMatch()GetFilter(ValueSource)
Returns a new Filter accepting only documents in this range. This filter is not general-purpose; you should either use it with DrillSideways by adding it to Add(String, Filter), or pass it to FilteredQuery using its QUERY_FIRST_FILTER_STRATEGY. If the ValueSource is static, e.g. an indexed numeric field, then it may be more efficient to use NumericRangeFilter.
Declaration
public virtual Filter GetFilter(ValueSource valueSource)Parameters
| Type | Name | Description | 
|---|---|---|
| ValueSource | valueSource | 
Returns
| Type | Description | 
|---|---|
| Filter | 
GetFilter(Filter, ValueSource)
Returns a new Filter accepting only documents
in this range.  This filter is not general-purpose;
you should either use it with DrillSideways by
adding it to Add(String, Filter), or pass it to
FilteredQuery using its 
QUERY_FIRST_FILTER_STRATEGY.
If the ValueSource is static, e.g. an indexed numeric
field, then it may be more efficient to use 
NumericRangeFilter.  The provided fastMatchFilter,
if non-null, will first be consulted, and only if
that is set for each document will the range then be
checked. 
Declaration
public abstract Filter GetFilter(Filter fastMatchFilter, ValueSource valueSource)Parameters
| Type | Name | Description | 
|---|---|---|
| Filter | fastMatchFilter | |
| ValueSource | valueSource | 
Returns
| Type | Description | 
|---|---|
| Filter |