Uses of Interface
cz.encircled.joiner.query.JoinerQuery
-
Packages that use JoinerQuery Package Description cz.encircled.joiner.core cz.encircled.joiner.query -
-
Uses of JoinerQuery in cz.encircled.joiner.core
Methods in cz.encircled.joiner.core with parameters of type JoinerQuery Modifier and Type Method Description <T,R>
List<R>Joiner. find(JoinerQuery<T,R> request)<R,U extends T>
List<R>JoinerRepository. find(JoinerQuery<U,R> request)Find multiple objects for given parameters<T,R>
RJoiner. findOne(JoinerQuery<T,R> request)<R,U extends T>
RJoinerRepository. findOne(JoinerQuery<U,R> request)Find one object (or null) for given parameters<T,R>
ExtendedJPAQuery<R>Joiner. toJPAQuery(JoinerQuery<T,R> request) -
Uses of JoinerQuery in cz.encircled.joiner.query
Classes in cz.encircled.joiner.query that implement JoinerQuery Modifier and Type Class Description classJoinerQueryBase<T,R>Implementation of joiner query withnon-tupleresultclassTupleJoinerQuery<T>Implementation of joiner query withTupleresultMethods in cz.encircled.joiner.query that return JoinerQuery Modifier and Type Method Description JoinerQuery<T,R>JoinerQuery. asc(com.querydsl.core.types.Expression<?> orderBy)<T,R>
JoinerQuery<T,R>QueryFeature. before(JoinerQuery<T,R> request)This method is called before JPA query creation and allows request modificationJoinerQuery<T,R>JoinerQuery. copy()JoinerQuery<T,R>JoinerQueryBase. copy()static <T> JoinerQuery<T,Long>Q. count(com.querydsl.core.types.EntityPath<T> from)Build count queryJoinerQuery<T,R>JoinerQuery. desc(com.querydsl.core.types.Expression<?> orderBy)JoinerQuery<T,R>JoinerQuery. distinct(boolean isDistinct)<T> JoinerQuery<T,R>ExpressionQueryFromBuilder. from(com.querydsl.core.types.EntityPath<T> from)<T> JoinerQuery<T,R>FromBuilder. from(com.querydsl.core.types.EntityPath<T> from)static <T> JoinerQuery<T,T>Q. from(com.querydsl.core.types.EntityPath<T> from)Build "from" clause of query<T> JoinerQuery<T,com.querydsl.core.Tuple>TupleQueryFromBuilder. from(com.querydsl.core.types.EntityPath<T> from)JoinerQuery<T,R>JoinerQuery. groupBy(com.querydsl.core.types.Path<?> groupBy)JoinerQuery<T,R>JoinerQuery. having(com.querydsl.core.types.Predicate having)JoinerQuery<T,R>JoinerQuery. joinGraphs(String... names)Add join graphs to the query.JoinerQuery<T,R>JoinerQuery. limit(Long limit)Set max results for the query resultsJoinerQuery<T,R>JoinerQuery. offset(Long offset)Set offset for the query resultsJoinerQuery<T,R>JoinerQuery. where(com.querydsl.core.types.Predicate where)Methods in cz.encircled.joiner.query with parameters of type JoinerQuery Modifier and Type Method Description default <T,R>
ExtendedJPAQuery<R>QueryFeature. after(JoinerQuery<T,R> request, ExtendedJPAQuery<R> query)This method is called just before JPA query execution and allows to modify result query directly<T,R>
JoinerQuery<T,R>QueryFeature. before(JoinerQuery<T,R> request)This method is called before JPA query creation and allows request modification
-