| Constructor and Description |
|---|
Update() |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(StatementVisitor statementVisitor) |
List<Column> |
getColumns()
The
Columns in this update (as col1 and col2 in UPDATE col1='a', col2='b') |
List<Expression> |
getExpressions()
The
Expressions in this update (as 'a' and 'b' in UPDATE col1='a', col2='b') |
Table |
getTable() |
Expression |
getWhere() |
void |
setColumns(List<Column> list) |
void |
setExpressions(List<Expression> list) |
void |
setTable(Table name) |
void |
setWhere(Expression expression) |
public void accept(StatementVisitor statementVisitor)
public Table getTable()
public Expression getWhere()
public void setTable(Table name)
public void setWhere(Expression expression)
public List<Column> getColumns()
Columns in this update (as col1 and col2 in UPDATE col1='a', col2='b')Columnspublic List<Expression> getExpressions()
Expressions in this update (as 'a' and 'b' in UPDATE col1='a', col2='b')Expressionspublic void setExpressions(List<Expression> list)
Copyright © 2013. All Rights Reserved.