Class ArrayExpression
java.lang.Object
org.datanucleus.store.query.expression.Expression
org.datanucleus.store.query.expression.ArrayExpression
- All Implemented Interfaces:
Serializable
Expression representing an input array of expressions (or at least some of the array is of expressions).
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Expression
Expression.DyadicOperator, Expression.MonadicOperator, Expression.Operator -
Field Summary
FieldsModifier and TypeFieldDescription(package private) List<Expression> Elements of the array.private static final longFields inherited from class Expression
alias, left, op, OP_ADD, OP_AND, OP_BIT_AND, OP_BIT_OR, OP_BIT_XOR, OP_CAST, 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_NOTIN, OP_OR, OP_SUB, parent, right, symbol -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbind(SymbolTable symtbl) Method to bind the expression to the symbol table as appropriate.intgetElement(int index) Accessor for an element of the array.toString()
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
elements
List<Expression> elementsElements of the array.
-
-
Constructor Details
-
ArrayExpression
-
-
Method Details
-
getElement
Accessor for an element of the array.- Parameters:
index- The index of the element in the array- Returns:
- Element
-
getArraySize
public int getArraySize() -
bind
Method to bind the expression to the symbol table as appropriate.- Specified by:
bindin classExpression- Parameters:
symtbl- Symbol table- Returns:
- The symbol for this expression
-
toString
-