- 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)IndexgetIndex()TablegetTable()List<String>getTailParameters()booleanisIndexTypeBeforeOn()booleanisUsingIfNotExists()voidsetIndex(Index index)voidsetIndexTypeBeforeOn(boolean indexTypeBeforeOn)voidsetTable(Table table)voidsetTailParameters(List<String> tailParameters)CreateIndexsetUsingIfNotExists(boolean usingIfNotExists)StringtoString()CreateIndexwithIndex(Index index)CreateIndexwithTable(Table table)CreateIndexwithTailParameters(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)
-
-