|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Expression | |
|---|---|
| org.castor.cpa.persistence.sql.query | |
| org.castor.cpa.persistence.sql.query.condition | |
| org.castor.cpa.persistence.sql.query.expression | |
| Uses of Expression in org.castor.cpa.persistence.sql.query |
|---|
| Methods in org.castor.cpa.persistence.sql.query that return Expression | |
|---|---|
Expression |
Assignment.rightExpression()
Returns right operand of the assignment. |
| Methods in org.castor.cpa.persistence.sql.query with parameters of type Expression | |
|---|---|
void |
Update.addAssignment(Column column,
Expression value)
Appends an assignment of the given value to the given column. |
void |
Insert.addAssignment(Column column,
Expression value)
Appends an assignment of the given value to the given column. |
| Constructors in org.castor.cpa.persistence.sql.query with parameters of type Expression | |
|---|---|
Assignment(Column left,
Expression right)
Constructor that assigns the given rigth hand operand cto the left hand one. |
|
| Uses of Expression in org.castor.cpa.persistence.sql.query.condition |
|---|
| Methods in org.castor.cpa.persistence.sql.query.condition that return Expression | |
|---|---|
Expression |
Predicate.expression()
Expression to apply the predicate to. |
Expression |
Compare.leftExpression()
Returns left operand of the comparison. |
Expression |
Compare.rightExpression()
Returns right operand of the comparison. |
| Constructors in org.castor.cpa.persistence.sql.query.condition with parameters of type Expression | |
|---|---|
Compare(Expression left,
CompareOperator operator,
Expression right)
Constructor a compare condition that compares given left and rigth hand operand with given comparison operator. |
|
IsNullPredicate(Expression expression)
Construct a predicate that checks the given expression for being null. |
|
IsNullPredicate(Expression expression,
boolean evaluateTo)
Construct a predicate that checks the given expression for being null. |
|
Predicate(Expression expression,
boolean evaluateTo)
Construct a predicate with given expression. |
|
| Uses of Expression in org.castor.cpa.persistence.sql.query.expression |
|---|
| Subclasses of Expression in org.castor.cpa.persistence.sql.query.expression | |
|---|---|
class |
Column
Class representing a column of the database table. |
class |
Function
Base class for all any sql functions. |
class |
NextVal
Class for NEXTVAL sql function. |
class |
Parameter
A parameter in a SQL query. |
| Methods in org.castor.cpa.persistence.sql.query.expression with parameters of type Expression | |
|---|---|
Compare |
Expression.equal(Expression expression)
Compare if this expression is equal to the given one. |
Compare |
Expression.greaterEqual(Expression expression)
Compare if this expression is greater than or equal to the given one. |
Compare |
Expression.greaterThan(Expression expression)
Compare if this expression is greater than the given one. |
Compare |
Expression.lessEqual(Expression expression)
Compare if this expression is less than or equal to the given one. |
Compare |
Expression.lessThan(Expression expression)
Compare if this expression is less than the given one. |
Compare |
Expression.notEqual(Expression expression)
Compare if this expression is not equal to the given one. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||