|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Expression | |
---|---|
org.azzyzt.jee.runtime.dto.query |
Uses of Expression in org.azzyzt.jee.runtime.dto.query |
---|
Subclasses of Expression in org.azzyzt.jee.runtime.dto.query | |
---|---|
class |
And
A binary boolean expression that is true when all its terms are true. |
class |
BinaryBooleanExpression
Abstract boolean expression class with some common code for validity checking and simplification |
class |
BinaryFieldExpression
A binary field expression is a FieldExpresssion with a binary operator. |
class |
FieldExpression
The abstract parent class for expressions that refer to entity fields. |
class |
Not
A unary boolean expression that negates its term |
class |
Or
A binary boolean expression that is true when at least one of its terms is true. |
class |
UnaryBooleanExpression
Parent class for boolean expressions with one term. |
class |
UnaryFieldExpression
A unary field expression is a FieldExpresssion with one field reference and a binary operator. |
Methods in org.azzyzt.jee.runtime.dto.query that return Expression | |
---|---|
Expression |
QuerySpec.getExpression()
|
Expression |
UnaryBooleanExpression.getExpression()
|
Expression |
FieldExpression.getReplaceableBy()
|
Expression |
QuerySpec.getReplaceableBy()
|
Expression |
Node.getReplaceableBy()
|
abstract Expression |
Expression.getReplaceableBy()
|
Expression |
BinaryBooleanExpression.getReplaceableBy()
|
Expression |
UnaryBooleanExpression.getReplaceableBy()
|
Methods in org.azzyzt.jee.runtime.dto.query that return types with arguments of type Expression | |
---|---|
java.util.List<Expression> |
BinaryBooleanExpression.getTerms()
|
Methods in org.azzyzt.jee.runtime.dto.query with parameters of type Expression | |
---|---|
void |
QuerySpec.add(Expression expression)
|
void |
Node.add(Expression expression)
Adds an expression to the current Node . |
void |
BinaryBooleanExpression.add(Expression e)
|
void |
UnaryBooleanExpression.add(Expression e)
|
void |
QuerySpec.setExpression(Expression expression)
|
void |
UnaryBooleanExpression.setExpression(Expression expression)
|
Method parameters in org.azzyzt.jee.runtime.dto.query with type arguments of type Expression | |
---|---|
void |
BinaryBooleanExpression.setTerms(java.util.List<Expression> terms)
|
Constructors in org.azzyzt.jee.runtime.dto.query with parameters of type Expression | |
---|---|
And(Expression... expressions)
|
|
Not(Expression e)
|
|
Or(Expression... expressions)
|
|
QuerySpec(Expression e,
java.util.List<OrderByClause> orderByList)
Programmatically construct a query specification from an expression and a list of order-by clauses |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |