T
- public interface ExtendedSubQuery<T> extends SubQueryExpression<T>
ExtendedSubQuery
extends the SubQueryExpression
interface to provide fluent
expression creation functionalityModifier 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 |
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 expression |
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 |
getMetadata
accept, getType
BooleanExpression 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
expressionconstant
- 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 comparisonCopyright © 2007–2015 Mysema Ltd. All rights reserved.