mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
BooleanExpression -> expression at comments
This commit is contained in:
parent
70a8f1cc52
commit
371e82aa9c
@ -22,14 +22,14 @@ import com.querydsl.core.types.dsl.BooleanOperation;
|
||||
|
||||
/**
|
||||
* {@code ExtendedSubQuery} extends the {@link com.querydsl.core.types.SubQueryExpression} interface to provide fluent
|
||||
* BooleanExpression creation functionality
|
||||
* expression creation functionality
|
||||
*
|
||||
* @param <T>
|
||||
*/
|
||||
public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
|
||||
/**
|
||||
* Create a {@code this == right} BooleanExpression
|
||||
* Create a {@code this == right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this == right
|
||||
@ -37,7 +37,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression eq(Expression<? extends T> expr);
|
||||
|
||||
/**
|
||||
* Create a {@code this == right} BooleanExpression
|
||||
* Create a {@code this == right} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return this == right
|
||||
@ -45,7 +45,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression eq(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code this != right} BooleanExpression
|
||||
* Create a {@code this != right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this != right
|
||||
@ -53,7 +53,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression ne(Expression<? extends T> expr);
|
||||
|
||||
/**
|
||||
* Create a {@code this != right} BooleanExpression
|
||||
* Create a {@code this != right} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return this != right
|
||||
@ -61,7 +61,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression ne(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code right in this} BooleanExpression
|
||||
* Create a {@code right in this} expression
|
||||
*
|
||||
* @param right rhs of the comparison
|
||||
* @return right in this
|
||||
@ -69,7 +69,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression contains(Expression<? extends T> right);
|
||||
|
||||
/**
|
||||
* Create a {@code right in this} BooleanExpression
|
||||
* Create a {@code right in this} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return right in this
|
||||
@ -77,21 +77,21 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression contains(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code exists(this)} BooleanExpression
|
||||
* Create a {@code exists(this)} expression
|
||||
*
|
||||
* @return exists(this)
|
||||
*/
|
||||
BooleanExpression exists();
|
||||
|
||||
/**
|
||||
* Create a {@code not exists(this)} BooleanExpression
|
||||
* Create a {@code not exists(this)} expression
|
||||
*
|
||||
* @return not exists(this)
|
||||
*/
|
||||
BooleanExpression notExists();
|
||||
|
||||
/**
|
||||
* Create a {@code this < right} BooleanExpression
|
||||
* Create a {@code this < right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this < right
|
||||
@ -107,7 +107,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression lt(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code this > right} BooleanExpression
|
||||
* Create a {@code this > right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this > right
|
||||
@ -115,7 +115,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression gt(Expression<? extends T> expr);
|
||||
|
||||
/**
|
||||
* Create a {@code this > right} BooleanExpression
|
||||
* Create a {@code this > right} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return this > right
|
||||
@ -123,7 +123,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression gt(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code this <= right} BooleanExpression
|
||||
* Create a {@code this <= right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this <= right
|
||||
@ -131,7 +131,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression loe(Expression<? extends T> expr);
|
||||
|
||||
/**
|
||||
* Create a {@code this <= right} BooleanExpression
|
||||
* Create a {@code this <= right} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return this <= right
|
||||
@ -139,7 +139,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression loe(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code this >= right} BooleanExpression
|
||||
* Create a {@code this >= right} expression
|
||||
*
|
||||
* @param expr rhs of the comparison
|
||||
* @return this >= right
|
||||
@ -147,7 +147,7 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression goe(Expression<? extends T> expr);
|
||||
|
||||
/**
|
||||
* Create a {@code this >= right} BooleanExpression
|
||||
* Create a {@code this >= right} expression
|
||||
*
|
||||
* @param constant rhs of the comparison
|
||||
* @return this >= right
|
||||
@ -155,28 +155,28 @@ public interface ExtendedSubQuery<T> extends SubQueryExpression<T> {
|
||||
BooleanExpression goe(T constant);
|
||||
|
||||
/**
|
||||
* Create a {@code this is null} BooleanExpression
|
||||
* Create a {@code this is null} expression
|
||||
*
|
||||
* @return this is null
|
||||
*/
|
||||
BooleanOperation isNull();
|
||||
|
||||
/**
|
||||
* Create a {@code this is not null} BooleanExpression
|
||||
* Create a {@code this is not null} expression
|
||||
*
|
||||
* @return this is not null
|
||||
*/
|
||||
BooleanOperation isNotNull();
|
||||
|
||||
/**
|
||||
* Create a {@code this in (a, b, c)} BooleanExpression
|
||||
* Create a {@code this in (a, b, c)} expression
|
||||
* @param right
|
||||
* @return this in (a, b, c)
|
||||
*/
|
||||
BooleanExpression in(Collection<? extends T> right);
|
||||
|
||||
/**
|
||||
* Create a {@code this in (a, b, c)} BooleanExpression
|
||||
* Create a {@code this in (a, b, c)} expression
|
||||
* @param right
|
||||
* @return this in (a, b, c)
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user