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 |
AndQueryNode
A
AndQueryNode represents an AND boolean operation performed on a
list of nodes. |
class |
AnyQueryNode
A
AnyQueryNode represents an ANY operator performed on a list of
nodes. |
class |
OrQueryNode
A
OrQueryNode represents an OR boolean operation performed on a list
of nodes. |
class |
ProximityQueryNode
A
ProximityQueryNode represents a query where the terms should meet
specific distance conditions. |
Modifier and Type | Class and Description |
---|---|
class |
StandardBooleanQueryNode
A
StandardBooleanQueryNode has the same behavior as
BooleanQueryNode . |