类 TablestoreDialectFactory
- java.lang.Object
-
- org.apache.seatunnel.connectors.seatunnel.jdbc.internal.dialect.tablestore.TablestoreDialectFactory
-
- 所有已实现的接口:
JdbcDialectFactory
@AutoService(JdbcDialectFactory.class) public class TablestoreDialectFactory extends Object implements JdbcDialectFactory
Factory forTablestoreDialect.
-
-
构造器概要
构造器 构造器 说明 TablestoreDialectFactory()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanacceptsURL(String url)Retrieves whether the dialect thinks that it can open a connection to the given URL.JdbcDialectcreate()-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.apache.seatunnel.connectors.seatunnel.jdbc.internal.dialect.JdbcDialectFactory
create
-
-
-
-
方法详细资料
-
acceptsURL
public boolean acceptsURL(String url)
从接口复制的说明:JdbcDialectFactoryRetrieves whether the dialect thinks that it can open a connection to the given URL. Typically, dialects will returntrueif they understand the sub-protocol specified in the URL andfalseif they do not.- 指定者:
acceptsURL在接口中JdbcDialectFactory- 参数:
url- the URL of the database- 返回:
trueif this dialect understands the given URL;falseotherwise.
-
create
public JdbcDialect create()
- 指定者:
create在接口中JdbcDialectFactory- 返回:
- Creates a new instance of the
JdbcDialect.
-
-