Package net.sf.jsqlparser.expression
Class VariableAssignment
java.lang.Object
net.sf.jsqlparser.parser.ASTNodeAccessImpl
net.sf.jsqlparser.expression.VariableAssignment
- All Implemented Interfaces:
Serializable
,Expression
,Model
,ASTNodeAccess
Assignment to a user variable like in select @a = 5.
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(ExpressionVisitor expressionVisitor) void
setExpression
(Expression expression) void
setOperation
(String operation) void
setVariable
(UserVariable variable) toString()
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, setASTNode
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.sf.jsqlparser.parser.ASTNodeAccess
getASTNode, setASTNode
-
Field Details
-
variable
-
operation
-
expression
-
-
Constructor Details
-
VariableAssignment
public VariableAssignment()
-
-
Method Details
-
getVariable
-
setVariable
-
getOperation
-
setOperation
-
getExpression
-
setExpression
-
toString
-
accept
- Specified by:
accept
in interfaceExpression
-