public enum SystemSchemaBuilderRule extends Enum<SystemSchemaBuilderRule>
| Enum Constant and Description |
|---|
MYSQL_INFORMATION_SCHEMA |
MYSQL_MYSQL |
MYSQL_PERFORMANCE_SCHEMA |
MYSQL_SYS |
POSTGRESQL_INFORMATION_SCHEMA |
POSTGRESQL_PG_CATALOG |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isSystemTable(String schema,
String tableName)
Judge whether current table is system table or not.
|
static SystemSchemaBuilderRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemSchemaBuilderRule |
valueOf(String databaseType,
String schema)
Value of builder rule.
|
static SystemSchemaBuilderRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemSchemaBuilderRule MYSQL_INFORMATION_SCHEMA
public static final SystemSchemaBuilderRule MYSQL_MYSQL
public static final SystemSchemaBuilderRule MYSQL_PERFORMANCE_SCHEMA
public static final SystemSchemaBuilderRule MYSQL_SYS
public static final SystemSchemaBuilderRule POSTGRESQL_INFORMATION_SCHEMA
public static final SystemSchemaBuilderRule POSTGRESQL_PG_CATALOG
public static SystemSchemaBuilderRule[] values()
for (SystemSchemaBuilderRule c : SystemSchemaBuilderRule.values()) System.out.println(c);
public static SystemSchemaBuilderRule valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SystemSchemaBuilderRule valueOf(String databaseType, String schema)
databaseType - database typeschema - schemaCopyright © 2022 The Apache Software Foundation. All rights reserved.