Class OpaqueQueryNode
- java.lang.Object
-
- org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
-
- org.apache.lucene.queryparser.flexible.core.nodes.OpaqueQueryNode
-
- All Implemented Interfaces:
java.lang.Cloneable,QueryNode
public class OpaqueQueryNode extends QueryNodeImpl
AOpaqueQueryNodeis used for specify values that are not supposed to be parsed by the parser. For example: and XPATH query in the middle of a query string a b @xpath:'/bookstore/book[1]/title' c d
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
PLAINTEXT_FIELD_NAME
-
-
Constructor Summary
Constructors Constructor Description OpaqueQueryNode(java.lang.CharSequence schema, java.lang.CharSequence value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryNodecloneTree()Recursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() methodjava.lang.CharSequencegetSchema()java.lang.CharSequencegetValue()java.lang.CharSequencetoQueryString(EscapeQuerySyntax escapeSyntaxParser)convert to a query string understood by the query parserjava.lang.StringtoString()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.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:QueryNodeImplEvery implementation of this class should return pseudo xml like this: For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>- Specified by:
toStringin interfaceQueryNode- Overrides:
toStringin classQueryNodeImpl- See Also:
QueryNode.toString()
-
toQueryString
public java.lang.CharSequence toQueryString(EscapeQuerySyntax escapeSyntaxParser)
Description copied from interface:QueryNodeconvert to a query string understood by the query parser
-
cloneTree
public QueryNode cloneTree() throws java.lang.CloneNotSupportedException
Description copied from interface:QueryNodeRecursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() method- Specified by:
cloneTreein interfaceQueryNode- Overrides:
cloneTreein classQueryNodeImpl- Returns:
- the cloned tree
- Throws:
java.lang.CloneNotSupportedException
-
getSchema
public java.lang.CharSequence getSchema()
- Returns:
- the schema
-
getValue
public java.lang.CharSequence getValue()
- Returns:
- the value
-
-