Uses of Class
ru.curs.celesta.score.Expr
-
Packages that use Expr Package Description ru.curs.celesta.dbutils.term Terms that constitute cursor's WHERE condition.ru.curs.celesta.score Package containing metadata of table structure. -
-
Uses of Expr in ru.curs.celesta.dbutils.term
Methods in ru.curs.celesta.dbutils.term that return Expr Modifier and Type Method Description Expr
WhereMakerParamsProvider. complexFilter()
-
Uses of Expr in ru.curs.celesta.score
Subclasses of Expr in ru.curs.celesta.score Modifier and Type Class Description class
BinaryLogicalOp
AND/OR.class
BinaryTermOp
+, -, *, /.class
Count
Created by ioann on 10.07.2017.class
FieldRef
Reference to a table column.class
LogicValuedExpr
Expression with logical value.class
Max
Created by ioann on 10.07.2017.class
Min
Created by ioann on 10.07.2017.class
ParameterRef
class
Relop
Relation (>=, <=, <>, =, <, >).class
Sum
Created by ioann on 10.07.2017.Methods in ru.curs.celesta.score that return Expr Modifier and Type Method Description Expr
CelestaParser. aggregateFunc(AbstractSelectStmt v)
Expr
Relop. getLeft()
Returns the left part.Expr
TableRef. getOnExpr()
Returns condition ON...Expr
Relop. getRight()
Returns the right part.Expr
Sum. getTerm()
Expr
ParameterizedViewSelectStmt. getWhereCondition()
Expr
CelestaParser. materializedAggregateFunc(AbstractSelectStmt v)
static Expr
CelestaParser. parseComplexFilter(String filter, IdentifierParser identifierParser)
Expr
CelestaParser. sqlAndExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlMultiplicativeExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlPrimaryExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlRelationalExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlTermExpr(IdentifierParser identifierParser)
Expr
CelestaParser. sqlUnaryExpression(IdentifierParser identifierParser)
Expr
CelestaParser. sqlUnaryLogicalExpression(IdentifierParser identifierParser)
Methods in ru.curs.celesta.score that return types with arguments of type Expr Modifier and Type Method Description Map<String,Expr>
AbstractView. getAggregateColumns()
List<Expr>
BinaryLogicalOp. getAllOperands()
abstract List<Expr>
LogicValuedExpr. getAllOperands()
List<Expr>
Relop. getAllOperands()
List<Expr>
BinaryLogicalOp. getOperands()
Returns the operands.List<Expr>
BinaryTermOp. getOperands()
Returns the operands.Constructors in ru.curs.celesta.score with parameters of type Expr Constructor Description Relop(Expr left, Expr right, int relop)
-