Constructor and Description |
---|
Update() |
Modifier and Type | Method and Description |
---|---|
void |
accept(StatementVisitor statementVisitor) |
List<Column> |
getColumns()
The
Column s in this update (as col1 and col2 in UPDATE col1='a', col2='b') |
List<Expression> |
getExpressions()
The
Expression s 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()
Column
s in this update (as col1 and col2 in UPDATE col1='a', col2='b')Column
spublic List<Expression> getExpressions()
Expression
s in this update (as 'a' and 'b' in UPDATE col1='a', col2='b')Expression
spublic void setExpressions(List<Expression> list)
Copyright © 2013. All Rights Reserved.