- java.lang.Object
-
- net.sf.jsqlparser.statement.insert.Insert
-
- net.sf.jsqlparser.statement.insert.ParenthesedInsert
-
- All Implemented Interfaces:
Serializable,Model,ParenthesedStatement,Statement
public class ParenthesedInsert extends Insert implements ParenthesedStatement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParenthesedInsert()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(StatementVisitor<T> statementVisitor, S context)AliasgetAlias()InsertgetInsert()voidsetAlias(Alias alias)voidsetInsert(Insert insert)StringtoString()ParenthesedInsertwithAlias(Alias alias)ParenthesedInsertwithInsert(Insert insert)-
Methods inherited from class net.sf.jsqlparser.statement.insert.Insert
addColumns, addColumns, getColumns, getConflictAction, getConflictTarget, getDuplicateUpdateSets, getModifierPriority, getOracleHint, getOutputClause, getPlainSelect, getReturningClause, getSelect, getSetOperationList, getSetUpdateSets, getTable, getValues, getWithItemsList, isModifierIgnore, isOnlyDefaultValues, isUseDuplicate, isUseSelectBrackets, isUseSet, isUseValues, setColumns, setConflictAction, setConflictTarget, setModifierIgnore, setModifierPriority, setOnlyDefaultValues, setOracleHint, setOutputClause, setReturningClause, setSelect, setTable, setWithItemsList, withColumns, withConflictAction, withConflictTarget, withDuplicateUpdateSets, withModifierIgnore, withModifierPriority, withOnlyDefaultValues, withSelect, withSetUpdateSets, withTable, 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:
getAliasin interfaceParenthesedStatement
-
setAlias
public void setAlias(Alias alias)
- Specified by:
setAliasin interfaceParenthesedStatement
-
withAlias
public ParenthesedInsert withAlias(Alias alias)
- Specified by:
withAliasin interfaceParenthesedStatement
-
getInsert
public Insert getInsert()
-
setInsert
public void setInsert(Insert insert)
-
withInsert
public ParenthesedInsert withInsert(Insert insert)
-
accept
public <T,S> T accept(StatementVisitor<T> statementVisitor, S context)
-
-