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 java.lang.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 Constructor Description FullTextVisitorBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanvisit(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
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.jackrabbit.oak.spi.query.fulltext.FullTextVisitor
visit
-
-
-
-
Method Detail
-
visit
public boolean visit(FullTextContains contains)
Description copied from interface:FullTextVisitorVisit an "contains" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
contains- the "contains" expression- Returns:
- true if visiting should continue
-
visit
public boolean visit(FullTextAnd and)
Description copied from interface:FullTextVisitorVisit an "and" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
and- the "and" expression- Returns:
- true if visiting should continue
-
visit
public boolean visit(FullTextOr or)
Description copied from interface:FullTextVisitorVisit an "or" expression.- Specified by:
visitin interfaceFullTextVisitor- Parameters:
or- the "or" expression- Returns:
- true if visiting should continue
-
-