PointRangeQuery
Abstract class for range queries against single or multidimensional points such as [ ].
This is for subclasses and works on the underlying binary encoding: to create range queries for lucene's standard Point types, refer to factory methods on those classes, e.g. for fields indexed with IntPoint.
For a single-dimensional field this query is a simple range query; in a multi-dimensional field it's a box shape.
See also
Functions
Expert: Constructs an appropriate Weight implementation for this query.
Override and implement query instance equivalence properly in a subclass. This is required so that QueryCache works properly.
Expert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.
Recurse through the query tree, visiting any child queries.