T
- Java type being represented herepublic interface ComparableExpression<T> extends Expression<T>
Modifier and Type | Method and Description |
---|---|
OrderExpression<T> |
asc()
Method to return an order expression for this expression in ascending order.
|
OrderExpression<T> |
desc()
Method to return an order expression for this expression in descending order.
|
BooleanExpression |
gt(ComparableExpression<? extends T> expr)
Method returning whether this expression is greater than the other expression.
|
BooleanExpression |
gt(T t)
Method returning whether this expression is greater than the literal.
|
BooleanExpression |
gteq(ComparableExpression<? extends T> expr)
Method returning whether this expression is greater than or equal the other expression.
|
BooleanExpression |
gteq(T t)
Method returning whether this expression is greater than or equal the literal.
|
BooleanExpression |
lt(ComparableExpression<? extends T> expr)
Method returning whether this expression is less than the other expression.
|
BooleanExpression |
lt(T t)
Method returning whether this expression is less than the literal.
|
BooleanExpression |
lteq(ComparableExpression<? extends T> expr)
Method returning whether this expression is less than or equal the other expression.
|
BooleanExpression |
lteq(T t)
Method returning whether this expression is less than or equal the literal.
|
ComparableExpression<T> |
max()
Method to return a numeric expression representing the aggregated maximum of this expression.
|
ComparableExpression<T> |
min()
Method to return a numeric expression representing the aggregated minimum of this expression.
|
as, cast, count, countDistinct, eq, eq, instanceOf, ne, ne
BooleanExpression lt(ComparableExpression<? extends T> expr)
expr
- Other expressionBooleanExpression lt(T t)
t
- literalBooleanExpression lteq(ComparableExpression<? extends T> expr)
expr
- Other expressionBooleanExpression lteq(T t)
t
- literalBooleanExpression gt(ComparableExpression<? extends T> expr)
expr
- Other expressionBooleanExpression gt(T t)
t
- literalBooleanExpression gteq(ComparableExpression<? extends T> expr)
expr
- Other expressionBooleanExpression gteq(T t)
t
- literalComparableExpression<T> min()
ComparableExpression<T> max()
OrderExpression<T> asc()
OrderExpression<T> desc()
Copyright © 2005–1970 Apache Software Foundation. All rights reserved.