lowerTerm is null and includeLower is true (similar for upperTerm and includeUpper)

Namespace: Lucene.Net.Search
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public RangeFilter(
	string fieldName,
	string lowerTerm,
	string upperTerm,
	bool includeLower,
	bool includeUpper
)
Visual Basic
Public Sub New ( _
	fieldName As String, _
	lowerTerm As String, _
	upperTerm As String, _
	includeLower As Boolean, _
	includeUpper As Boolean _
)
Visual C++
public:
RangeFilter(
	String^ fieldName, 
	String^ lowerTerm, 
	String^ upperTerm, 
	bool includeLower, 
	bool includeUpper
)

Parameters

fieldName
Type: System..::..String
The field this range applies to
lowerTerm
Type: System..::..String
The lower bound on this range
upperTerm
Type: System..::..String
The upper bound on this range
includeLower
Type: System..::..Boolean
Does this range include the lower bound?
includeUpper
Type: System..::..Boolean
Does this range include the upper bound?

See Also