Constructor and Description |
---|
CreateTable() |
Modifier and Type | Method and Description |
---|---|
void |
accept(StatementVisitor statementVisitor) |
List<ColumnDefinition> |
getColumnDefinitions()
A list of
ColumnDefinition s of this table. |
List<String> |
getCreateOptionsStrings() |
List<Index> |
getIndexes()
A list of
Index es (for example "PRIMARY KEY") of this table. |
Select |
getSelect() |
Table |
getTable() |
List<?> |
getTableOptionsStrings()
A list of options (as simple strings) of this table definition, as ("TYPE", "=", "MYISAM")
|
boolean |
isIfNotExists() |
boolean |
isSelectParenthesis() |
boolean |
isUnlogged() |
void |
setColumnDefinitions(List<ColumnDefinition> list) |
void |
setCreateOptionsStrings(List<String> createOptionsStrings) |
void |
setIfNotExists(boolean ifNotExists) |
void |
setIndexes(List<Index> list) |
void |
setSelect(Select select,
boolean parenthesis) |
void |
setSelectParenthesis(boolean selectParenthesis) |
void |
setTable(Table table) |
void |
setTableOptionsStrings(List<String> list) |
void |
setUnlogged(boolean unlogged) |
String |
toString() |
public void accept(StatementVisitor statementVisitor)
public Table getTable()
public void setTable(Table table)
public boolean isUnlogged()
public void setUnlogged(boolean unlogged)
public List<ColumnDefinition> getColumnDefinitions()
ColumnDefinition
s of this table.public void setColumnDefinitions(List<ColumnDefinition> list)
public List<?> getTableOptionsStrings()
public List<Index> getIndexes()
Index
es (for example "PRIMARY KEY") of this table.public Select getSelect()
public void setSelect(Select select, boolean parenthesis)
public boolean isIfNotExists()
public void setIfNotExists(boolean ifNotExists)
public boolean isSelectParenthesis()
public void setSelectParenthesis(boolean selectParenthesis)
Copyright © 2004–2019 JSQLParser. All rights reserved.