T
- The builder type that is returned on terminal operationspublic interface SubqueryInitiator<T>
Modifier and Type | Method and Description |
---|---|
SubqueryBuilder<T> |
from(Class<?> entityClass)
Like
from(java.lang.Class, java.lang.String) with the
alias equivalent to the camel cased result of what Class.getSimpleName() of the entity class returns. |
SubqueryBuilder<T> |
from(Class<?> entityClass,
String alias)
Creates a new subquery builder with the given entity class as root entity in the FROM clause with the given alias.
|
SubqueryBuilder<T> from(Class<?> entityClass)
from(java.lang.Class, java.lang.String)
with the
alias equivalent to the camel cased result of what Class.getSimpleName()
of the entity class returns.entityClass
- The entity class which should be the root entitySubqueryBuilder<T> from(Class<?> entityClass, String alias)
entityClass
- The entity class which should be the root entityalias
- The alias for the root entityCopyright © 2015 Blazebit. All Rights Reserved.