E - generic type of the entity to query.public interface QueryDslSupport<E>
GenericRepository in order to be used by Java8+ default-method implementations for simplicity. Never call
such methods from outside the data-access layer.| Modifier and Type | Method and Description |
|---|---|
E |
newDslAlias()
Attention: Please read documentation of
QueryDslSupport before usage. |
com.querydsl.jpa.impl.JPADeleteClause |
newDslDeleteClause(E alias)
Attention: Please read documentation of
QueryDslSupport before usage. |
com.querydsl.jpa.impl.JPADeleteClause |
newDslDeleteClause(com.querydsl.core.types.EntityPath<E> entityPath)
Attention: Please read documentation of
QueryDslSupport before usage. |
com.querydsl.jpa.impl.JPAQuery<E> |
newDslQuery()
Attention: Please read documentation of
QueryDslSupport before usage. |
com.querydsl.jpa.impl.JPAQuery<E> |
newDslQuery(E alias)
Attention: Please read documentation of
QueryDslSupport before usage. |
com.querydsl.jpa.impl.JPAQuery<E> newDslQuery()
QueryDslSupport before usage.JPAQuery. In most cases you should prefer using newDslQuery(Object) instead.com.querydsl.jpa.impl.JPAQuery<E> newDslQuery(E alias)
QueryDslSupport before usage.alias - the alias.JPAQuery for the given Alias.com.querydsl.jpa.impl.JPADeleteClause newDslDeleteClause(E alias)
QueryDslSupport before usage.alias - the alias.JPADeleteClause for the given Alias.com.querydsl.jpa.impl.JPADeleteClause newDslDeleteClause(com.querydsl.core.types.EntityPath<E> entityPath)
QueryDslSupport before usage.entityPath - the EntityPath to delete from.JPADeleteClause for the given EntityPath.E newDslAlias()
QueryDslSupport before usage.Alias for the managed entity.Copyright © 2014–2019 devon4j-Team. All rights reserved.