Interface IAbstractConditionalExpressionStateObjectBuilder<T extends IScalarExpressionStateObjectBuilder<T>>
-
- All Superinterfaces:
IScalarExpressionStateObjectBuilder<T>
- All Known Subinterfaces:
ICaseExpressionStateObjectBuilder
,IConditionalExpressionStateObjectBuilder
,IEclipseLinkConditionalStateObjectBuilder
- All Known Implementing Classes:
AbstractCaseExpressionStateObjectBuilder
,AbstractConditionalExpressionStateObjectBuilder
,AbstractConditionalStateObjectBuilderWrapper
,DefaultCaseExpressionStateObjectBuilder
,DefaultConditionalExpressionStateObjectBuilder
,EclipseLinkConditionalStateObjectBuilder
public interface IAbstractConditionalExpressionStateObjectBuilder<T extends IScalarExpressionStateObjectBuilder<T>> extends IScalarExpressionStateObjectBuilder<T>
- Since:
- 2.4
- Version:
- 2.4
- Author:
- Pascal Filion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
all(SimpleSelectStatementStateObject subquery)
Creates the expressionALL(subquery)
.T
and(T builder)
Creates the expressionx AND y
.T
any(SimpleSelectStatementStateObject subquery)
Creates the expressionANY(subquery)
.T
between(T lowerBoundExpression, T upperBoundExpression)
Creates the expressionx BETWEEN y AND z
.T
collectionPath(String path)
Creates a new collection-valued path expression.T
different(Number number)
T
different(String literal)
T
different(T builder)
T
equal(Number number)
T
equal(String literal)
T
equal(T builder)
T
exists(SimpleSelectStatementStateObject subquery)
T
FALSE()
T
greaterThan(Number number)
T
greaterThan(String literal)
T
greaterThan(T builder)
T
greaterThanOrEqual(Number number)
T
greaterThanOrEqual(String literal)
T
greaterThanOrEqual(T builder)
T
in(String... inItems)
T
in(SimpleSelectStatementStateObject subquery)
T
in(T... inItems)
T
isEmpty(String path)
T
isNotEmpty(String path)
T
isNotNull(String path)
T
isNull(String path)
T
like(String patternValue)
T
like(T patternValue)
T
like(T patternValue, String escapeCharacter)
T
lower(T builder)
T
lowerThan(Number number)
T
lowerThan(String literal)
T
lowerThan(T builder)
T
lowerThanOrEqual(Number number)
T
lowerThanOrEqual(String literal)
T
lowerThanOrEqual(T builder)
T
member(String path)
T
memberOf(String path)
T
notBetween(T lowerBoundExpression, T upperBoundExpression)
T
notExists(SimpleSelectStatementStateObject subquery)
T
notIn(String... inItems)
T
notIn(SimpleSelectStatementStateObject subquery)
T
notIn(T... inItems)
T
notLike(String patternValue)
T
notLike(T builder)
T
notLike(T builder, String escapeCharacter)
T
notMember(String path)
T
notMemberOf(String path)
T
NULL()
T
or(T builder)
T
some(SimpleSelectStatementStateObject subquery)
T
sub(StateObject stateObject)
T
substring(T parameter1, T parameter2, T parameter3)
T
trim(TrimExpression.Specification specification, String trimCharacter, T builder)
T
trim(TrimExpression.Specification specification, T builder)
T
TRUE()
T
upper(T builder)
T
variable(String variable)
Creates the expression representing an identification variable.-
Methods inherited from interface org.eclipse.persistence.jpa.jpql.tools.model.IScalarExpressionStateObjectBuilder
abs, add, avg, avgDistinct, case_, coalesce, concat, count, countDistinct, currentDate, currentTime, currentTimestamp, date, divide, entityType, enumLiteral, function, function, getCaseBuilder, index, length, locate, locate, max, maxDistinct, min, minDistinct, minus, mod, multiply, nullIf, numeric, numeric, parameter, path, plus, size, sqrt, string, sub, subtract, sum, sumDistinct, type
-
-
-
-
Method Detail
-
all
T all(SimpleSelectStatementStateObject subquery)
Creates the expressionALL(subquery)
.- Parameters:
subquery
- The already constructed subquery- Returns:
- This builder
-
and
T and(T builder)
Creates the expressionx AND y
.- Parameters:
builder
- The right side of the logical expression- Returns:
- This builder
-
any
T any(SimpleSelectStatementStateObject subquery)
Creates the expressionANY(subquery)
.- Parameters:
subquery
- The already constructed subquery- Returns:
- This builder
-
between
T between(T lowerBoundExpression, T upperBoundExpression)
Creates the expressionx BETWEEN y AND z
.- Parameters:
lowerBoundExpression
- The lower bound expressionupperBoundExpression
- The upper bound expression- Returns:
- This builder
-
collectionPath
T collectionPath(String path)
Creates a new collection-valued path expression.- Parameters:
path
- The collection-valued path expression- Returns:
- This builder
-
exists
T exists(SimpleSelectStatementStateObject subquery)
-
FALSE
T FALSE()
-
in
T in(SimpleSelectStatementStateObject subquery)
-
notExists
T notExists(SimpleSelectStatementStateObject subquery)
-
notIn
T notIn(SimpleSelectStatementStateObject subquery)
-
NULL
T NULL()
-
some
T some(SimpleSelectStatementStateObject subquery)
-
sub
T sub(StateObject stateObject)
-
trim
T trim(TrimExpression.Specification specification, String trimCharacter, T builder)
-
trim
T trim(TrimExpression.Specification specification, T builder)
-
TRUE
T TRUE()
-
-