Class PrefixWildcardQueryNode
- java.lang.Object
-
- org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
-
- org.apache.lucene.queryparser.flexible.core.nodes.FieldQueryNode
-
- org.apache.lucene.queryparser.flexible.standard.nodes.WildcardQueryNode
-
- org.apache.lucene.queryparser.flexible.standard.nodes.PrefixWildcardQueryNode
-
- All Implemented Interfaces:
java.lang.Cloneable
,FieldableNode
,FieldValuePairQueryNode<java.lang.CharSequence>
,QueryNode
,TextableQueryNode
,ValueQueryNode<java.lang.CharSequence>
public class PrefixWildcardQueryNode extends WildcardQueryNode
APrefixWildcardQueryNode
represents wildcardquery that matches abc* or *. This does not apply to phrases, this is a special case on the original lucene parser. TODO: refactor the code to remove this special case from the parser. and probably do it on a Processor
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
PLAINTEXT_FIELD_NAME
-
-
Constructor Summary
Constructors Constructor Description PrefixWildcardQueryNode(java.lang.CharSequence field, java.lang.CharSequence text, int begin, int end)
PrefixWildcardQueryNode(FieldQueryNode fqn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrefixWildcardQueryNode
cloneTree()
Recursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() methodjava.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.standard.nodes.WildcardQueryNode
toQueryString
-
Methods inherited from class org.apache.lucene.queryparser.flexible.core.nodes.FieldQueryNode
getBegin, getEnd, getField, getFieldAsString, getPositionIncrement, getText, getTextAsString, getValue, setBegin, setEnd, setField, setPositionIncrement, setText, setValue
-
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
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.queryparser.flexible.core.nodes.QueryNode
add, add, containsTag, getChildren, getParent, getTag, getTagMap, isLeaf, removeFromParent, set, setTag, unsetTag
-
-
-
-
Constructor Detail
-
PrefixWildcardQueryNode
public PrefixWildcardQueryNode(java.lang.CharSequence field, java.lang.CharSequence text, int begin, int end)
- Parameters:
field
- - field nametext
- - value including the wildcardbegin
- - position in the query stringend
- - position in the query string
-
PrefixWildcardQueryNode
public PrefixWildcardQueryNode(FieldQueryNode fqn)
-
-
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 classWildcardQueryNode
- See Also:
QueryNode.toString()
-
cloneTree
public PrefixWildcardQueryNode cloneTree() throws java.lang.CloneNotSupportedException
Description copied from interface:QueryNode
Recursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() method- Specified by:
cloneTree
in interfaceQueryNode
- Overrides:
cloneTree
in classWildcardQueryNode
- Returns:
- the cloned tree
- Throws:
java.lang.CloneNotSupportedException
-
-