public class TextsearchQueryNode extends QueryNode
TYPE_AND, TYPE_DEREF, TYPE_EXACT, TYPE_LOCATION, TYPE_NODETYPE, TYPE_NOT, TYPE_OR, TYPE_ORDER, TYPE_PATH, TYPE_PROP_FUNCTION, TYPE_RELATION, TYPE_ROOT, TYPE_TEXTSEARCH| Modifier and Type | Method and Description | 
|---|---|
java.lang.Object | 
accept(QueryNodeVisitor visitor,
      java.lang.Object data)
Accepts a  
QueryNodeVisitor and calls the appropriate visit
 method on the visitor depending on the concrete implementation of
 this QueryNode. | 
void | 
addPathElement(Path.Element element)
Adds a path element to the existing relative path. 
 | 
boolean | 
equals(java.lang.Object obj)
Returns  
true if obj is the same type of
 QueryNode as this node and is equal to
 this node. | 
Name | 
getPropertyName()
Deprecated. 
 
Use  
getRelativePath() instead. | 
java.lang.String | 
getQuery()
Returns the textsearch statement. 
 | 
boolean | 
getReferencesProperty()  | 
Path | 
getRelativePath()  | 
int | 
getType()
Returns the type of this node. 
 | 
boolean | 
needsSystemTree()
Returns  
true if this query node needs items under
 /jcr:system to be queried. | 
void | 
setPropertyName(Name property)
Deprecated. 
 
Use  
setRelativePath(Path) instead. | 
void | 
setReferencesProperty(boolean b)
Is set to  
true, indicates that getRelativePath()
 references a property, if set to false indicates that it
 references a node. | 
void | 
setRelativePath(Path relPath)
Sets the relative path to the item where the textsearch is performed. 
 | 
public java.lang.Object accept(QueryNodeVisitor visitor, java.lang.Object data) throws RepositoryException
QueryNodeVisitor and calls the appropriate visit
 method on the visitor depending on the concrete implementation of
 this QueryNode.accept in class QueryNodevisitor - the visitor to call back.data - arbitrary data for the visitor.visitor.visit() call.RepositoryExceptionpublic int getType()
public java.lang.String getQuery()
public Name getPropertyName()
getRelativePath() instead.null if the scope is spawned across all properties of a
 node. Please note that this method does not return the full relative path
 that reference the item to match, but only the name of the final name
 element of the path returned by getRelativePath().null.public void setPropertyName(Name property)
setRelativePath(Path) instead.property - the name of the property.public Path getRelativePath()
null if the textsearch is
         performed on the context node.public void setRelativePath(Path relPath)
relPath is null the textsearch is performed on
 the context node.relPath - the relative path to an item.java.lang.IllegalArgumentException - if relPath is absolute.public void addPathElement(Path.Element element)
RelationQueryNode.STAR_NAME_TEST.element - the path element to append.public boolean getReferencesProperty()
true if getRelativePath() references a
         property, returns false if it references a node.public void setReferencesProperty(boolean b)
true, indicates that getRelativePath()
 references a property, if set to false indicates that it
 references a node.b - flag whether a property is referenced.public boolean equals(java.lang.Object obj)
true if obj is the same type of
 QueryNode as this node and is equal to
 this node.public boolean needsSystemTree()
true if this query node needs items under
 /jcr:system to be queried.needsSystemTree in class QueryNodetrue if this query node needs content under
         /jcr:system to be queried; false otherwise.Copyright © 2010 - 2023 Adobe. All Rights Reserved