Uses of Class
net.sf.jsqlparser.statement.create.table.ColumnDefinition
-
Packages that use ColumnDefinition Package Description net.sf.jsqlparser.expression net.sf.jsqlparser.parser net.sf.jsqlparser.statement net.sf.jsqlparser.statement.alter net.sf.jsqlparser.statement.create.table -
-
Uses of ColumnDefinition in net.sf.jsqlparser.expression
Fields in net.sf.jsqlparser.expression with type parameters of type ColumnDefinition Modifier and Type Field Description private java.util.ArrayList<ColumnDefinition>
CastExpression. columnDefinitions
Methods in net.sf.jsqlparser.expression that return types with arguments of type ColumnDefinition Modifier and Type Method Description java.util.ArrayList<ColumnDefinition>
CastExpression. getColumnDefinitions()
Methods in net.sf.jsqlparser.expression with parameters of type ColumnDefinition Modifier and Type Method Description void
CastExpression. addColumnDefinition(ColumnDefinition columnDefinition)
-
Uses of ColumnDefinition in net.sf.jsqlparser.parser
Methods in net.sf.jsqlparser.parser that return ColumnDefinition Modifier and Type Method Description ColumnDefinition
CCJSqlParser. ColumnDefinition()
-
Uses of ColumnDefinition in net.sf.jsqlparser.statement
Fields in net.sf.jsqlparser.statement with type parameters of type ColumnDefinition Modifier and Type Field Description private java.util.List<ColumnDefinition>
DeclareStatement. columnDefinitions
Methods in net.sf.jsqlparser.statement that return types with arguments of type ColumnDefinition Modifier and Type Method Description java.util.List<ColumnDefinition>
DeclareStatement. getColumnDefinitions()
Methods in net.sf.jsqlparser.statement with parameters of type ColumnDefinition Modifier and Type Method Description void
DeclareStatement. addColumnDefinition(ColumnDefinition colDef)
DeclareStatement
DeclareStatement. addColumnDefinitions(ColumnDefinition... statements)
Method parameters in net.sf.jsqlparser.statement with type arguments of type ColumnDefinition Modifier and Type Method Description DeclareStatement
DeclareStatement. addColumnDefinitions(java.util.Collection<? extends ColumnDefinition> columnDefinitions)
void
DeclareStatement. setColumnDefinitions(java.util.List<ColumnDefinition> columnDefinitions)
DeclareStatement
DeclareStatement. withColumnDefinitions(java.util.List<ColumnDefinition> columnDefinitions)
-
Uses of ColumnDefinition in net.sf.jsqlparser.statement.alter
Subclasses of ColumnDefinition in net.sf.jsqlparser.statement.alter Modifier and Type Class Description static class
AlterExpression.ColumnDataType
-
Uses of ColumnDefinition in net.sf.jsqlparser.statement.create.table
Fields in net.sf.jsqlparser.statement.create.table with type parameters of type ColumnDefinition Modifier and Type Field Description private java.util.List<ColumnDefinition>
CreateTable. columnDefinitions
Methods in net.sf.jsqlparser.statement.create.table that return ColumnDefinition Modifier and Type Method Description ColumnDefinition
ColumnDefinition. addColumnSpecs(java.lang.String... columnSpecs)
ColumnDefinition
ColumnDefinition. addColumnSpecs(java.util.Collection<java.lang.String> columnSpecs)
ColumnDefinition
ColumnDefinition. withColDataType(ColDataType colDataType)
ColumnDefinition
ColumnDefinition. withColumnName(java.lang.String columnName)
ColumnDefinition
ColumnDefinition. withColumnSpecs(java.util.List<java.lang.String> columnSpecs)
Methods in net.sf.jsqlparser.statement.create.table that return types with arguments of type ColumnDefinition Modifier and Type Method Description java.util.List<ColumnDefinition>
CreateTable. getColumnDefinitions()
Methods in net.sf.jsqlparser.statement.create.table with parameters of type ColumnDefinition Modifier and Type Method Description CreateTable
CreateTable. addColumnDefinitions(ColumnDefinition... columnDefinitions)
Method parameters in net.sf.jsqlparser.statement.create.table with type arguments of type ColumnDefinition Modifier and Type Method Description CreateTable
CreateTable. addColumnDefinitions(java.util.Collection<? extends ColumnDefinition> columnDefinitions)
void
CreateTable. setColumnDefinitions(java.util.List<ColumnDefinition> list)
CreateTable
CreateTable. withColumnDefinitions(java.util.List<ColumnDefinition> columnDefinitions)
-