Class FullTextVisitor.FullTextVisitorBase
java.lang.Object
org.apache.jackrabbit.oak.spi.query.fulltext.FullTextVisitor.FullTextVisitorBase
- All Implemented Interfaces:
FullTextVisitor
- Enclosing interface:
- FullTextVisitor
public abstract static class FullTextVisitor.FullTextVisitorBase
extends Object
implements FullTextVisitor
The base implementation of a full-text visitor.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.jackrabbit.oak.spi.query.fulltext.FullTextVisitor
FullTextVisitor.FullTextVisitorBase -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanvisit(FullTextAnd and) Visit an "and" expression.booleanvisit(FullTextContains contains) Visit an "contains" expression.booleanvisit(FullTextOr or) Visit an "or" expression.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.jackrabbit.oak.spi.query.fulltext.FullTextVisitor
visit
-
Constructor Details
-
FullTextVisitorBase
public FullTextVisitorBase()
-
-
Method Details
-
visit
Description copied from interface:FullTextVisitorVisit an "contains" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
contains- the "contains" expression- Returns:
- true if visiting should continue
-
visit
Description copied from interface:FullTextVisitorVisit an "and" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
and- the "and" expression- Returns:
- true if visiting should continue
-
visit
Description copied from interface:FullTextVisitorVisit an "or" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
or- the "or" expression- Returns:
- true if visiting should continue
-