- java.lang.Object
-
- net.sf.jsqlparser.statement.insert.Insert
-
- net.sf.jsqlparser.statement.insert.ParenthesedInsert
-
- All Implemented Interfaces:
java.io.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)
Alias
getAlias()
Insert
getInsert()
void
setAlias(Alias alias)
void
setInsert(Insert insert)
java.lang.String
toString()
ParenthesedInsert
withAlias(Alias alias)
ParenthesedInsert
withInsert(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:
getAlias
in interfaceParenthesedStatement
-
setAlias
public void setAlias(Alias alias)
- Specified by:
setAlias
in interfaceParenthesedStatement
-
withAlias
public ParenthesedInsert withAlias(Alias alias)
- Specified by:
withAlias
in 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)
-
-