public final class CollQueryFactory extends Object
| Modifier and Type | Method and Description | 
|---|---|
| static <A> CollDeleteClause<A> | delete(Path<A> path,
      Collection<A> col)Create a new delete clause | 
| static <A> CollQuery | from(A alias,
    Iterable<A> col)Create a new query | 
| static <A> CollQuery | from(Path<A> path,
    A... arr)Create a new query | 
| static <A> CollQuery | 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 from(A alias, Iterable<A> col)
alias - source aliascol - source collectionpublic static <A> CollQuery from(Path<A> path, A... arr)
path - source expressionarr - source arraypublic static <A> CollQuery 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–2015 Querydsl. All rights reserved.