All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static void |
addConsumer(BranchNode<?,TableNodeType> table,
ExceptionConsumer<DBSchemaUtils.DBSchemaEvent> consumer) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBigIntColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBigIntColumn(BranchNode<?,TableNodeType> table,
String columnName,
long defaultValue) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBinaryColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBlobColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBooleanColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createBooleanColumnWithDefault(BranchNode<?,TableNodeType> table,
String columnName,
boolean defaultValue) |
static BranchNode<TableNodeType,ColumnNodeType> |
createCharColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable,
int length) |
static BranchNode<TableNodeType,ColumnNodeType> |
createClobColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createDateColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createDateColumnDefaultCurrent(BranchNode<?,TableNodeType> table,
String columnName) |
static BranchNode<TableNodeType,ColumnNodeType> |
createDoubleColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createDoubleColumn(BranchNode<?,TableNodeType> table,
String columnName,
double defaultValue) |
static BranchNode<TableNodeType,IndexNodeType> |
createIndex(BranchNode<?,TableNodeType> table,
boolean unique,
String keyName,
String... columnNames) |
static BranchNode<TableNodeType,ColumnNodeType> |
createIntegerColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createIntegerColumn(BranchNode<?,TableNodeType> table,
String columnName,
int defaultValue) |
static BranchNode<TableNodeType,ColumnNodeType> |
createRealColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createRealColumn(BranchNode<?,TableNodeType> table,
String columnName,
float defaultValue) |
static BranchNode<TableNodeType,ColumnNodeType> |
createSmallIntColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createSmallIntColumn(BranchNode<?,TableNodeType> table,
String columnName,
short defaultValue) |
static BranchNode<TableNodeType,ColumnNodeType> |
createTimeColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createTimeColumnDefaultCurrent(BranchNode<?,TableNodeType> table,
String columnName) |
static BranchNode<TableNodeType,ColumnNodeType> |
createTimestampColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable) |
static BranchNode<TableNodeType,ColumnNodeType> |
createTimestampColumnDefaultCurrent(BranchNode<?,TableNodeType> table,
String columnName) |
static BranchNode<TableNodeType,ColumnNodeType> |
createVarcharColumn(BranchNode<?,TableNodeType> table,
String columnName,
boolean nullable,
int length) |