C# 클래스 Lucene.Net.QueryParsers.Xml.Builders.NumericRangeQueryBuilder

Creates a NumericRangeQuery. The table below specifies the required attributes and the defaults if optional attributes are omitted. For more detail on what each of the attributes actually do, consult the documentation for NumericRangeQuery: Attribute name Values Required Default fieldName String Yes N/A lowerTerm Specified by type Yes N/A upperTerm Specified by type Yes N/A type int, long, float, double No int includeLower true, false No true includeUpper true, false No true precisionStep int No 4 A ParserException will be thrown if an error occurs parsing the supplied lowerTerm or upperTerm into the numeric type specified by type.
상속: IQueryBuilder
파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 메소드들

메소드 설명
GetQuery ( XmlElement e ) : Query

메소드 상세

GetQuery() 공개 메소드

public GetQuery ( XmlElement e ) : Query
e System.Xml.XmlElement
리턴 Lucene.Net.Search.Query