public class SqlTable extends Object
Modifier | Constructor and Description |
---|---|
protected |
SqlTable(String tableName) |
protected |
SqlTable(Supplier<Optional<String>> schemaSupplier,
String tableName) |
protected |
SqlTable(Supplier<Optional<String>> catalogSupplier,
Supplier<Optional<String>> schemaSupplier,
String tableName) |
protected |
SqlTable(Supplier<String> tableNameSupplier) |
Modifier and Type | Method and Description |
---|---|
<T> SqlColumn<T> |
allColumns() |
<T> SqlColumn<T> |
column(String name) |
<T> SqlColumn<T> |
column(String name,
JDBCType jdbcType) |
<T> SqlColumn<T> |
column(String name,
JDBCType jdbcType,
String typeHandler) |
static SqlTable |
of(String name) |
String |
tableNameAtRuntime() |
Copyright © 2016–2019 MyBatis.org. All rights reserved.