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 | Interface and Description |
---|---|
interface |
FieldValuePairQueryNode<T>
This interface should be implemented by
QueryNode that holds a field
and an arbitrary value. |
Modifier and Type | Class and Description |
---|---|
class |
FieldQueryNode
A
FieldQueryNode represents a element that contains field/text tuple |
class |
FuzzyQueryNode
A
FuzzyQueryNode represents a element that contains
field/text/similarity tuple |
class |
ParametricQueryNode
Deprecated.
this class will be removed in future.
FieldQueryNode
should be used instead. |
class |
QuotedFieldQueryNode
A
QuotedFieldQueryNode represents phrase query. |
Modifier and Type | Class and Description |
---|---|
class |
NumericQueryNode
This query node represents a field query that holds a numeric value.
|
class |
PrefixWildcardQueryNode
A
PrefixWildcardQueryNode represents wildcardquery that matches abc*
or *. |
class |
WildcardQueryNode
A
WildcardQueryNode represents wildcard query This does not apply to
phrases. |