T - expression typepublic interface Expression<T> extends Serializable
Expression defines a general typed expression in a Query instance. The generic type parameter
is a reference to the type the expression is bound to.
The central Expression subinterfaces are
Constant - for constants such as Strings, numbers and entity instancesFactoryExpression - for row based result processingOperation - for common supported operations and function callsParamExpression - for bindable query parametersPath - for variables, properties and collection member accessSubQueryExpression - for subqueriesTemplateExpression - for custom syntax| Modifier and Type | Method and Description |
|---|---|
<R,C> R |
accept(Visitor<R,C> v,
C context)
Accept the visitor with the given context
|
Class<? extends T> |
getType()
Get the java type for this expression
|
Copyright © 2007–2016 Querydsl. All rights reserved.