Class MatchNoDocsQueryNode
- java.lang.Object
-
- org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
-
- org.apache.lucene.queryparser.flexible.core.nodes.DeletedQueryNode
-
- org.apache.lucene.queryparser.flexible.core.nodes.MatchNoDocsQueryNode
-
- All Implemented Interfaces:
java.lang.Cloneable
,QueryNode
public class MatchNoDocsQueryNode extends DeletedQueryNode
AMatchNoDocsQueryNode
indicates that a query node tree or subtree will not match any documents if executed in the index.
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
PLAINTEXT_FIELD_NAME
-
-
Constructor Summary
Constructors Constructor Description MatchNoDocsQueryNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Every implementation of this class should return pseudo xml like this: For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>-
Methods inherited from class org.apache.lucene.queryparser.flexible.core.nodes.DeletedQueryNode
cloneTree, toQueryString
-
Methods inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
add, add, clone, containsTag, getChildren, getParent, getTag, getTagMap, isLeaf, removeFromParent, set, setTag, unsetTag
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
Description copied from class:QueryNodeImpl
Every implementation of this class should return pseudo xml like this: For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>- Specified by:
toString
in interfaceQueryNode
- Overrides:
toString
in classDeletedQueryNode
- See Also:
QueryNode.toString()
-
-