Uses of Class
net.sf.jsqlparser.statement.create.table.Index
-
Packages that use Index Package Description net.sf.jsqlparser.parser net.sf.jsqlparser.statement net.sf.jsqlparser.statement.alter net.sf.jsqlparser.statement.create.index net.sf.jsqlparser.statement.create.table -
-
Uses of Index in net.sf.jsqlparser.parser
Methods in net.sf.jsqlparser.parser that return Index Modifier and Type Method Description Index
CCJSqlParser. Index()
Index
CCJSqlParser. IndexWithComment(Index index)
Methods in net.sf.jsqlparser.parser with parameters of type Index Modifier and Type Method Description Index
CCJSqlParser. IndexWithComment(Index index)
-
Uses of Index in net.sf.jsqlparser.statement
Constructors in net.sf.jsqlparser.statement with parameters of type Index Constructor Description PurgeStatement(Index index)
-
Uses of Index in net.sf.jsqlparser.statement.alter
Fields in net.sf.jsqlparser.statement.alter declared as Index Modifier and Type Field Description private Index
AlterExpression. index
private Index
AlterExpression. oldIndex
Methods in net.sf.jsqlparser.statement.alter that return Index Modifier and Type Method Description Index
AlterExpression. getIndex()
Index
AlterExpression. getOldIndex()
Methods in net.sf.jsqlparser.statement.alter with parameters of type Index Modifier and Type Method Description void
AlterExpression. setIndex(Index index)
void
AlterExpression. setOldIndex(Index oldIndex)
AlterExpression
AlterExpression. withIndex(Index index)
-
Uses of Index in net.sf.jsqlparser.statement.create.index
Fields in net.sf.jsqlparser.statement.create.index declared as Index Modifier and Type Field Description private Index
CreateIndex. index
Methods in net.sf.jsqlparser.statement.create.index that return Index Modifier and Type Method Description Index
CreateIndex. getIndex()
Methods in net.sf.jsqlparser.statement.create.index with parameters of type Index Modifier and Type Method Description void
CreateIndex. setIndex(Index index)
CreateIndex
CreateIndex. withIndex(Index index)
-
Uses of Index in net.sf.jsqlparser.statement.create.table
Subclasses of Index in net.sf.jsqlparser.statement.create.table Modifier and Type Class Description class
CheckConstraint
class
ExcludeConstraint
class
ForeignKeyIndex
class
NamedConstraint
Fields in net.sf.jsqlparser.statement.create.table with type parameters of type Index Modifier and Type Field Description private java.util.List<Index>
CreateTable. indexes
Methods in net.sf.jsqlparser.statement.create.table that return Index Modifier and Type Method Description Index
Index. addColumns(java.util.Collection<? extends Index.ColumnParams> functionDeclarationParts)
Index
Index. addColumns(Index.ColumnParams... functionDeclarationParts)
Index
Index. withColumns(java.util.List<Index.ColumnParams> columns)
Index
Index. withColumnsNames(java.util.List<java.lang.String> list)
Index
Index. withIndexSpec(java.util.List<java.lang.String> idxSpec)
Index
Index. withName(java.lang.String name)
Index
Index. withName(java.util.List<java.lang.String> name)
Index
Index. withType(java.lang.String type)
Index
Index. withUsing(java.lang.String using)
Methods in net.sf.jsqlparser.statement.create.table that return types with arguments of type Index Modifier and Type Method Description java.util.List<Index>
CreateTable. getIndexes()
Methods in net.sf.jsqlparser.statement.create.table with parameters of type Index Modifier and Type Method Description CreateTable
CreateTable. addIndexes(Index... indexes)
Method parameters in net.sf.jsqlparser.statement.create.table with type arguments of type Index Modifier and Type Method Description CreateTable
CreateTable. addIndexes(java.util.Collection<? extends Index> indexes)
void
CreateTable. setIndexes(java.util.List<Index> list)
CreateTable
CreateTable. withIndexes(java.util.List<Index> indexes)
-