public final class CollQueryFactory extends Object
CollQueryFactory
provides static convenience methods for query constructionModifier and Type | Method and Description |
---|---|
static <A> CollDeleteClause<A> |
delete(Path<A> path,
Collection<A> col)
Create a new delete clause
|
static <A> CollQuery<A> |
from(A alias,
Iterable<A> col)
Create a new query
|
static <A> CollQuery<A> |
from(Path<A> path,
A... arr)
Create a new query
|
static <A> CollQuery<A> |
from(Path<A> path,
Iterable<A> col)
Create a new query
|
static <A> CollUpdateClause<A> |
update(Path<A> path,
Iterable<A> col)
Create a new update clause
|
public static <A> CollDeleteClause<A> delete(Path<A> path, Collection<A> col)
path
- source expressioncol
- source collectionpublic static <A> CollQuery<A> from(A alias, Iterable<A> col)
alias
- source aliascol
- source collectionpublic static <A> CollQuery<A> from(Path<A> path, A... arr)
path
- source expressionarr
- source arraypublic static <A> CollQuery<A> from(Path<A> path, Iterable<A> col)
path
- source expressioncol
- source collectionpublic static <A> CollUpdateClause<A> update(Path<A> path, Iterable<A> col)
path
- source expressioncol
- source collectionCopyright © 2007–2016 Querydsl. All rights reserved.