|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Detachable
Detachable defines methods for the construction of SubQuery instances
Method Summary | ||
---|---|---|
NumberSubQuery<Long> |
count()
Return the count of matched rows as a sub query |
|
BooleanExpression |
exists()
Create an exists(this) expression |
|
ListSubQuery<Object[]> |
list(Expression<?>[] args)
Create a projection expression for the given projection |
|
ListSubQuery<Object[]> |
list(Expression<?> first,
Expression<?> second,
Expression<?>... rest)
Create a projection expression for the given projection |
|
|
list(Expression<RT> projection)
Create a projection expression for the given projection |
|
ListSubQuery<Object[]> |
list(Object... args)
Create a projection expression for the given projection Non expression arguments are converted into constant expressions |
|
BooleanExpression |
notExists()
Create an not exists(this) expression |
|
|
unique(ComparableExpression<RT> projection)
Create a subquery expression for the given projection |
|
|
unique(DateExpression<RT> projection)
Create a subquery expression for the given projection |
|
|
unique(DateTimeExpression<RT> projection)
Create a subquery expression for the given projection |
|
SimpleSubQuery<Object[]> |
unique(Expression<?>[] args)
Create a projection expression for the given projection |
|
SimpleSubQuery<Object[]> |
unique(Expression<?> first,
Expression<?> second,
Expression<?>... rest)
Create a projection expression for the given projection |
|
|
unique(Expression<RT> projection)
Create a subquery expression for the given projection |
|
|
unique(NumberExpression<RT> projection)
Create a subquery expression for the given projection |
|
SimpleSubQuery<Object[]> |
unique(Object... args)
Create a projection expression for the given projection Non expression arguments are converted into constant expressions |
|
BooleanSubQuery |
unique(Predicate projection)
Create a subquery expression for the given projection |
|
StringSubQuery |
unique(StringExpression projection)
Create a subquery expression for the given projection |
|
|
unique(TimeExpression<RT> projection)
Create a subquery expression for the given projection |
Method Detail |
---|
NumberSubQuery<Long> count()
BooleanExpression exists()
ListSubQuery<Object[]> list(Expression<?> first, Expression<?> second, Expression<?>... rest)
first
- second
- rest
- rest
ListSubQuery<Object[]> list(Expression<?>[] args)
args
-
ListSubQuery<Object[]> list(Object... args)
args
-
<RT> ListSubQuery<RT> list(Expression<RT> projection)
RT
- generic type of the Listprojection
-
BooleanExpression notExists()
SimpleSubQuery<Object[]> unique(Expression<?> first, Expression<?> second, Expression<?>... rest)
first
- second
- rest
-
SimpleSubQuery<Object[]> unique(Expression<?>[] args)
args
-
SimpleSubQuery<Object[]> unique(Object... args)
args
-
<RT> SimpleSubQuery<RT> unique(Expression<RT> projection)
RT
- return typeprojection
-
BooleanSubQuery unique(Predicate projection)
projection
-
StringSubQuery unique(StringExpression projection)
projection
-
<RT extends Comparable<?>> ComparableSubQuery<RT> unique(ComparableExpression<RT> projection)
RT
- projection
-
<RT extends Comparable<?>> DateSubQuery<RT> unique(DateExpression<RT> projection)
RT
- projection
-
<RT extends Comparable<?>> DateTimeSubQuery<RT> unique(DateTimeExpression<RT> projection)
RT
- projection
-
<RT extends Comparable<?>> TimeSubQuery<RT> unique(TimeExpression<RT> projection)
RT
- projection
-
<RT extends Number & Comparable<?>> NumberSubQuery<RT> unique(NumberExpression<RT> projection)
RT
- projection
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |