public enum ConfigurationPropertyKey extends Enum<ConfigurationPropertyKey> implements TypedPropertyKey
| 枚举常量和说明 |
|---|
ACCEPTOR_SIZE
The max thread size of accepter group to accept TCP connections.
|
CHECK_TABLE_METADATA_ENABLED
Whether validate table meta data consistency when application startup or updated.
|
EXECUTOR_SIZE
The max thread size of worker group to execute SQL.
|
MAX_CONNECTIONS_SIZE_PER_QUERY
Max opened connection size for each query.
|
PROXY_FRONTEND_FLUSH_THRESHOLD
Flush threshold for every records from databases for ShardingSphere-Proxy.
|
PROXY_HINT_ENABLED
Whether enable hint for ShardingSphere-Proxy.
|
PROXY_OPENTRACING_ENABLED
Whether enable opentracing for ShardingSphere-Proxy.
|
PROXY_TRANSACTION_TYPE
Transaction type of proxy.
|
QUERY_WITH_CIPHER_COLUMN
Whether query with cipher column for data encrypt.
|
SQL_SHOW
Whether show SQL in log.
|
SQL_SIMPLE
Whether show SQL details in simple style.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static ConfigurationPropertyKey |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ConfigurationPropertyKey[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetDefaultValue, getKey, getTypepublic static final ConfigurationPropertyKey SQL_SHOW
public static final ConfigurationPropertyKey SQL_SIMPLE
public static final ConfigurationPropertyKey ACCEPTOR_SIZE
public static final ConfigurationPropertyKey EXECUTOR_SIZE
public static final ConfigurationPropertyKey MAX_CONNECTIONS_SIZE_PER_QUERY
public static final ConfigurationPropertyKey CHECK_TABLE_METADATA_ENABLED
public static final ConfigurationPropertyKey QUERY_WITH_CIPHER_COLUMN
public static final ConfigurationPropertyKey PROXY_FRONTEND_FLUSH_THRESHOLD
public static final ConfigurationPropertyKey PROXY_TRANSACTION_TYPE
LOCAL: ShardingSphere-Proxy will run with LOCAL transaction.
XA: ShardingSphere-Proxy will run with XA transaction.
BASE: ShardingSphere-Proxy will run with BASE transaction.
public static final ConfigurationPropertyKey PROXY_OPENTRACING_ENABLED
public static final ConfigurationPropertyKey PROXY_HINT_ENABLED
public static ConfigurationPropertyKey[] values()
for (ConfigurationPropertyKey c : ConfigurationPropertyKey.values()) System.out.println(c);
public static ConfigurationPropertyKey valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020 The Apache Software Foundation. All rights reserved.