org.datanucleus.query.expression
Class ClassExpression
java.lang.Object
org.datanucleus.query.expression.Expression
org.datanucleus.query.expression.ClassExpression
public class ClassExpression
- extends Expression
Expression representing a candidate in a FROM clause.
This is used in JPQL where we have a "from" clause like
SELECT ... FROM Product p JOIN p.reviews r
so the ClassExpression is for alias "p" of type Product.
The class name is stored in the Symbol, keyed by this alias.
Can have a JoinExpression to its right.
| Fields inherited from class org.datanucleus.query.expression.Expression |
left, LOCALISER, op, OP_ADD, OP_AND, OP_COM, OP_CONCAT, OP_DISTINCT, OP_DIV, OP_EQ, OP_GT, OP_GTEQ, OP_IN, OP_IS, OP_ISNOT, OP_LIKE, OP_LT, OP_LTEQ, OP_MOD, OP_MUL, OP_NEG, OP_NOT, OP_NOTEQ, OP_OR, OP_SUB, right, symbol |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ClassExpression
public ClassExpression(java.lang.String alias)
setCandidateExpression
public void setCandidateExpression(java.lang.String expr)
getCandidateExpression
public java.lang.String getCandidateExpression()
setJoinExpression
public void setJoinExpression(JoinExpression expr)
- Set the right expression to the provided join.
- Parameters:
expr - Join information
getAlias
public java.lang.String getAlias()
- Overrides:
getAlias in class Expression
bind
public Symbol bind(SymbolTable symtbl)
- Method to bind the expression to the symbol table as appropriate.
- Specified by:
bind in class Expression
- Parameters:
symtbl - Symbol table
- Returns:
- The symbol for this expression
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object
Copyright © 2010. All Rights Reserved.