- java.lang.Object
-
- net.sf.jsqlparser.statement.create.view.CreateView
-
- All Implemented Interfaces:
Serializable,Model,Statement
public class CreateView extends Object implements Statement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateView()
-
Method Summary
-
-
-
Method Detail
-
accept
public <T,S> T accept(StatementVisitor<T> statementVisitor, S context)
-
getView
public Table getView()
-
setView
public void setView(Table view)
-
isOrReplace
public boolean isOrReplace()
-
setOrReplace
public void setOrReplace(boolean orReplace)
- Parameters:
orReplace- was "OR REPLACE" specified?
-
getSelect
public Select getSelect()
-
setSelect
public void setSelect(Select select)
-
getColumnNames
public ExpressionList<Column> getColumnNames()
-
setColumnNames
public void setColumnNames(ExpressionList<Column> columnNames)
-
isMaterialized
public boolean isMaterialized()
-
setMaterialized
public void setMaterialized(boolean materialized)
-
getForce
public ForceOption getForce()
-
setForce
public void setForce(ForceOption force)
-
isSecure
public boolean isSecure()
-
setSecure
public void setSecure(boolean secure)
-
getTemporary
public TemporaryOption getTemporary()
-
setTemporary
public void setTemporary(TemporaryOption temp)
-
getAutoRefresh
public AutoRefreshOption getAutoRefresh()
-
setAutoRefresh
public void setAutoRefresh(AutoRefreshOption autoRefresh)
-
isWithReadOnly
public boolean isWithReadOnly()
-
setWithReadOnly
public void setWithReadOnly(boolean withReadOnly)
-
isIfNotExists
public boolean isIfNotExists()
-
setIfNotExists
public void setIfNotExists(boolean ifNotExists)
-
withView
public CreateView withView(Table view)
-
withSelect
public CreateView withSelect(Select select)
-
withOrReplace
public CreateView withOrReplace(boolean orReplace)
-
withColumnNames
public CreateView withColumnNames(ExpressionList<Column> columnNames)
-
withMaterialized
public CreateView withMaterialized(boolean materialized)
-
withForce
public CreateView withForce(ForceOption force)
-
withWithReadOnly
public CreateView withWithReadOnly(boolean withReadOnly)
-
-