Package | Description |
---|---|
org.apache.lucene.queryParser.core.nodes |
Contains query nodes that are commonly used by query parser implementations
Query Nodes
The package org.apache.lucene.queryParser.nodes contains all the basic query nodes.
|
org.apache.lucene.queryParser.standard.nodes |
Standard Lucene Query Nodes
The package org.apache.lucene.queryParser.standard.nodes contains QueryNode classes
that are used specifically for Lucene query node tree.
|
Modifier and Type | Class and Description |
---|---|
class |
ParametricRangeQueryNode
A
ParametricRangeQueryNode represents LE, LT, GE, GT, EQ, NE query. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRangeQueryNode<T extends FieldValuePairQueryNode<?>>
This class should be extended by nodes intending to represent range queries.
|
class |
NumericRangeQueryNode
This query node represents a range query composed by
NumericQueryNode
bounds, which means the bound values are Number s. |
class |
RangeQueryNode
Deprecated.
this class will be removed in future,
TermRangeQueryNode should
be used instead |
class |
TermRangeQueryNode
This query node represents a range query composed by
FieldQueryNode
bounds, which means the bound values are strings. |