T - The final java type of the expression.E - The result set read java type of the expression.public interface Expression<T,E> extends SQLWritable
| Modifier and Type | Method and Description |
|---|---|
OrderExpr |
asc()
Creates a new order by expression that orders for this expression in an
ascending manner.
|
OrderExpr |
desc()
Creates a new order by expression that orders for this expression in a
descending manner.
|
BooleanExpr<Boolean,Boolean> |
eq(Expression<T,E> operand)
Creates a new boolean expression that performs the equals comparation of
this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
eq(T operand)
Creates a new boolean expression that performs the equals comparation of
this expression with the given operand.
|
SQLType<T,E> |
getSQLType()
The SQL type for this expression.
|
BooleanExpr<Boolean,Boolean> |
in(ArrayExpr<T,E> array)
Creates a new boolean expression that performs the "in" search of this
expression with in the given array.
|
BooleanExpr<Boolean,Boolean> |
isNull()
Creates a new boolean expression that performs the "is null" comparation
for this expression.
|
BooleanExpr<Boolean,Boolean> |
ne(Expression<T,E> operand)
Creates a new boolean expression that performs the non equals comparation
of this expression with the given one.
|
BooleanExpr<Boolean,Boolean> |
ne(T operand)
Creates a new boolean expression that performs the non equals comparation
of this expression with the given operand.
|
writeSQLSQLType<T,E> getSQLType()
BooleanExpr<Boolean,Boolean> eq(Expression<T,E> operand)
operand - The second operand.BooleanExpr<Boolean,Boolean> ne(Expression<T,E> operand)
operand - The second operand.BooleanExpr<Boolean,Boolean> eq(T operand)
operand - The second operand.BooleanExpr<Boolean,Boolean> ne(T operand)
operand - The second operand.BooleanExpr<Boolean,Boolean> isNull()
BooleanExpr<Boolean,Boolean> in(ArrayExpr<T,E> array)
array - The array of elements to look for this expression.OrderExpr asc()
OrderExpr desc()
Copyright © 2015–2018 Bridje Framework. All rights reserved.