T - public interface ExtendedSubQuery<T> extends SubQueryExpression<T>
ExtendedSubQuery extends the SubQueryExpression interface to provide fluent
expression creation functionality| Modifier and Type | Method and Description |
|---|---|
BooleanExpression |
contains(Expression<? extends T> right)
Create a
right in this expression |
BooleanExpression |
contains(T constant)
Create a
right in this expression |
BooleanExpression |
eq(Expression<? extends T> expr)
Create a
this == right expression |
BooleanExpression |
eq(T constant)
Create a
this == right expression |
BooleanExpression |
exists()
Create a
exists(this) expression |
BooleanExpression |
goe(Expression<? extends T> expr)
Create a
this >= right expression |
BooleanExpression |
goe(T constant)
Create a
this >= right expression |
BooleanExpression |
gt(Expression<? extends T> expr)
Create a
this > right expression |
BooleanExpression |
gt(T constant)
Create a
this > right expression |
BooleanExpression |
in(java.util.Collection<? extends T> right)
Create a
this in (a, b, c) expression |
BooleanExpression |
in(T... right)
Create a
this in (a, b, c) expression |
BooleanOperation |
isNotNull()
Create a
this is not null expression |
BooleanOperation |
isNull()
Create a
this is null expression |
BooleanExpression |
loe(Expression<? extends T> expr)
Create a
this <= right expression |
BooleanExpression |
loe(T constant)
Create a
this <= right expression |
BooleanExpression |
lt(Expression<? extends T> expr)
Create a
this < right expression |
BooleanExpression |
lt(T constant)
Create a
this < right BooleanExpression |
BooleanExpression |
ne(Expression<? extends T> expr)
Create a
this != right expression |
BooleanExpression |
ne(T constant)
Create a
this != right expression |
BooleanExpression |
notExists()
Create a
not exists(this) expression |
getMetadataaccept, getTypeBooleanExpression eq(Expression<? extends T> expr)
this == right expressionexpr - rhs of the comparisonBooleanExpression eq(T constant)
this == right expressionconstant - rhs of the comparisonBooleanExpression ne(Expression<? extends T> expr)
this != right expressionexpr - rhs of the comparisonBooleanExpression ne(T constant)
this != right expressionconstant - rhs of the comparisonBooleanExpression contains(Expression<? extends T> right)
right in this expressionright - rhs of the comparisonBooleanExpression contains(T constant)
right in this expressionconstant - rhs of the comparisonBooleanExpression exists()
exists(this) expressionBooleanExpression notExists()
not exists(this) expressionBooleanExpression lt(Expression<? extends T> expr)
this < right expressionexpr - rhs of the comparisonBooleanExpression lt(T constant)
this < right BooleanExpressionconstant - rhs of the comparisonBooleanExpression gt(Expression<? extends T> expr)
this > right expressionexpr - rhs of the comparisonBooleanExpression gt(T constant)
this > right expressionconstant - rhs of the comparisonBooleanExpression loe(Expression<? extends T> expr)
this <= right expressionexpr - rhs of the comparisonBooleanExpression loe(T constant)
this <= right expressionconstant - rhs of the comparisonBooleanExpression goe(Expression<? extends T> expr)
this >= right expressionexpr - rhs of the comparisonBooleanExpression goe(T constant)
this >= right expressionconstant - rhs of the comparisonBooleanOperation isNull()
this is null expressionBooleanOperation isNotNull()
this is not null expressionBooleanExpression in(java.util.Collection<? extends T> right)
this in (a, b, c) expressionright - BooleanExpression in(T... right)
this in (a, b, c) expressionright - Copyright © 2007–2021 Querydsl. All rights reserved.