- java.lang.Object
-
- org.mybatis.dynamic.sql.SqlTable
-
public class SqlTable extends Object
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SqlTable(String tableName)
protected
SqlTable(Supplier<String> tableNameSupplier)
protected
SqlTable(Supplier<Optional<String>> schemaSupplier, String tableName)
protected
SqlTable(Supplier<Optional<String>> catalogSupplier, Supplier<Optional<String>> schemaSupplier, String tableName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BasicColumn
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()
-
-
-
Constructor Detail
-
SqlTable
protected SqlTable(String tableName)
-
-
Method Detail
-
tableNameAtRuntime
public String tableNameAtRuntime()
-
allColumns
public BasicColumn allColumns()
-
-