R
- Return typeC
- Context typepublic 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 Constant 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)
Visit an 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–2016 Querydsl. All rights reserved.