diff --git a/querydsl-core/src/main/java/com/querydsl/core/support/ExtendedSubQuery.java b/querydsl-core/src/main/java/com/querydsl/core/support/ExtendedSubQuery.java index a41889f5a..14ad12c50 100644 --- a/querydsl-core/src/main/java/com/querydsl/core/support/ExtendedSubQuery.java +++ b/querydsl-core/src/main/java/com/querydsl/core/support/ExtendedSubQuery.java @@ -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 */ public interface ExtendedSubQuery extends SubQueryExpression { /** - * 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 extends SubQueryExpression { BooleanExpression eq(Expression 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 extends SubQueryExpression { 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 extends SubQueryExpression { BooleanExpression ne(Expression 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 extends SubQueryExpression { 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 extends SubQueryExpression { BooleanExpression contains(Expression 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 extends SubQueryExpression { 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 extends SubQueryExpression { 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 extends SubQueryExpression { BooleanExpression gt(Expression 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 extends SubQueryExpression { 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 extends SubQueryExpression { BooleanExpression loe(Expression 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 extends SubQueryExpression { 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 extends SubQueryExpression { BooleanExpression goe(Expression 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 extends SubQueryExpression { 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 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) */