public interface Visitor<R,C>
Visitor defines a visitor signature for Expression instances.| Modifier and Type | Method and Description |
|---|---|
R |
visit(Constant<?> expr,
C context)
Visit a Contant instance with the given context
|
R |
visit(FactoryExpression<?> expr,
C context)
Visit a FactoryExpression instance with the given context
|
R |
visit(Operation<?> expr,
C context)
Vist a Operation instance with the given context
|
R |
visit(ParamExpression<?> expr,
C context)
Visit a ParamExpression instance with the given context
|
R |
visit(Path<?> expr,
C context)
Visit a Path instance with the given context
|
R |
visit(SubQueryExpression<?> expr,
C context)
Visit a SubQueryExpression instance with the given context
|
R |
visit(TemplateExpression<?> expr,
C context)
Visit a TemplateExpression instance with the given context
|
R visit(Constant<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(FactoryExpression<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(Operation<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(ParamExpression<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(Path<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(SubQueryExpression<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedR visit(TemplateExpression<?> expr, C context)
expr - expression to visitcontext - context of the visit or null, if not usedCopyright © 2007–2015 Mysema Ltd. All rights reserved.