Class CreatorExpression
- java.lang.Object
-
- org.datanucleus.store.query.expression.Expression
-
- org.datanucleus.store.query.expression.CreatorExpression
-
- All Implemented Interfaces:
java.io.Serializable
public class CreatorExpression extends Expression
Expression representing something like "new X.Y.Z([param1[,param2[,param3]]])".- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.datanucleus.store.query.expression.Expression
Expression.DyadicOperator, Expression.MonadicOperator, Expression.Operator
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.List<Expression>argumentsArguments for the creation call.private static longserialVersionUID(package private) java.util.List<java.lang.String>tuplesComponents of the class name being created e.g ["org", "datanucleus", "MyClass"].-
Fields inherited from class org.datanucleus.store.query.expression.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 Constructor Description CreatorExpression(java.util.List<java.lang.String> tuples, java.util.List<Expression> args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Symbolbind(SymbolTable symtbl)Method to bind the expression to the symbol table as appropriate.java.util.List<Expression>getArguments()Accessor for the arguments to use in the creation call.java.lang.StringgetId()Accessor for the class name of the object being created.java.util.ListgetTuples()java.lang.StringtoString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
tuples
java.util.List<java.lang.String> tuples
Components of the class name being created e.g ["org", "datanucleus", "MyClass"].
-
arguments
java.util.List<Expression> arguments
Arguments for the creation call.
-
-
Constructor Detail
-
CreatorExpression
public CreatorExpression(java.util.List<java.lang.String> tuples, java.util.List<Expression> args)
-
-
Method Detail
-
getId
public java.lang.String getId()
Accessor for the class name of the object being created.- Returns:
- Name of the class
-
getArguments
public java.util.List<Expression> getArguments()
Accessor for the arguments to use in the creation call.- Returns:
- Argument list
-
getTuples
public java.util.List getTuples()
-
bind
public Symbol bind(SymbolTable symtbl)
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
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-