- java.lang.Object
-
- net.sf.jsqlparser.statement.create.index.CreateIndex
-
- All Implemented Interfaces:
Serializable
,Model
,Statement
public class CreateIndex extends Object implements Statement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateIndex()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(StatementVisitor<T> statementVisitor, S context)
Index
getIndex()
Table
getTable()
List<String>
getTailParameters()
boolean
isIndexTypeBeforeOn()
boolean
isUsingIfNotExists()
void
setIndex(Index index)
void
setIndexTypeBeforeOn(boolean indexTypeBeforeOn)
void
setTable(Table table)
void
setTailParameters(List<String> tailParameters)
CreateIndex
setUsingIfNotExists(boolean usingIfNotExists)
String
toString()
CreateIndex
withIndex(Index index)
CreateIndex
withTable(Table table)
CreateIndex
withTailParameters(List<String> tailParameters)
-
-
-
Method Detail
-
isIndexTypeBeforeOn
public boolean isIndexTypeBeforeOn()
-
setIndexTypeBeforeOn
public void setIndexTypeBeforeOn(boolean indexTypeBeforeOn)
-
isUsingIfNotExists
public boolean isUsingIfNotExists()
-
setUsingIfNotExists
public CreateIndex setUsingIfNotExists(boolean usingIfNotExists)
-
accept
public <T,S> T accept(StatementVisitor<T> statementVisitor, S context)
-
getIndex
public Index getIndex()
-
setIndex
public void setIndex(Index index)
-
getTable
public Table getTable()
-
setTable
public void setTable(Table table)
-
withTable
public CreateIndex withTable(Table table)
-
withIndex
public CreateIndex withIndex(Index index)
-
withTailParameters
public CreateIndex withTailParameters(List<String> tailParameters)
-
-