- java.lang.Object
-
- net.sf.jsqlparser.statement.update.Update
-
- net.sf.jsqlparser.statement.update.ParenthesedUpdate
-
- All Implemented Interfaces:
java.io.Serializable
,Model
,ParenthesedStatement
,Statement
public class ParenthesedUpdate extends Update implements ParenthesedStatement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParenthesedUpdate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(StatementVisitor<T> statementVisitor, S context)
Alias
getAlias()
Update
getUpdate()
void
setAlias(Alias alias)
void
setUpdate(Update update)
java.lang.String
toString()
ParenthesedUpdate
withAlias(Alias alias)
ParenthesedUpdate
withUpdate(Update update)
-
Methods inherited from class net.sf.jsqlparser.statement.update.Update
addColumns, addColumns, addExpressions, addExpressions, addJoins, addJoins, addOrderByElements, addOrderByElements, addStartJoins, addStartJoins, addUpdateSet, addUpdateSet, addWithItemsList, addWithItemsList, getColumns, getExpressions, getFromItem, getFromItem, getJoins, getLimit, getModifierPriority, getOracleHint, getOrderByElements, getOutputClause, getPreferringClause, getReturningClause, getSelect, getStartJoins, getTable, getUpdateSet, getUpdateSets, getWhere, getWhere, getWithItemsList, isModifierIgnore, isUseColumnsBrackets, isUseSelect, setColumns, setExpressions, setFromItem, setJoins, setLimit, setModifierIgnore, setModifierPriority, setOracleHint, setOrderByElements, setOutputClause, setPreferringClause, setReturningClause, setSelect, setStartJoins, setTable, setUpdateSets, setUseColumnsBrackets, setUseSelect, setWhere, setWithItemsList, withColumns, withExpressions, withFromItem, withJoins, withLimit, withModifierIgnore, withModifierPriority, withOrderByElements, withPreferringClause, withSelect, withStartJoins, withTable, withUpdateSets, withUseColumnsBrackets, withUseSelect, withWhere, withWithItemsList
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.statement.ParenthesedStatement
accept
-
-
-
-
Method Detail
-
getAlias
public Alias getAlias()
- Specified by:
getAlias
in interfaceParenthesedStatement
-
setAlias
public void setAlias(Alias alias)
- Specified by:
setAlias
in interfaceParenthesedStatement
-
withAlias
public ParenthesedUpdate withAlias(Alias alias)
- Specified by:
withAlias
in interfaceParenthesedStatement
-
getUpdate
public Update getUpdate()
-
setUpdate
public void setUpdate(Update update)
-
withUpdate
public ParenthesedUpdate withUpdate(Update update)
-
accept
public <T,S> T accept(StatementVisitor<T> statementVisitor, S context)
-
-