public enum Dialect extends Enum<Dialect>
| Enum Constant and Description |
|---|
DB2 |
HSQLDB |
JDBC |
MARIADB |
MYSQL |
ORACLE |
SQLSERVER |
| Modifier and Type | Method and Description |
|---|---|
Collection<Table> |
getTables(Database database) |
static Dialect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dialect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dialect JDBC
public static final Dialect HSQLDB
public static final Dialect ORACLE
public static final Dialect DB2
public static final Dialect SQLSERVER
public static final Dialect MARIADB
public static final Dialect MYSQL
public static Dialect[] values()
for (Dialect c : Dialect.values()) System.out.println(c);
public static Dialect 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 Collection<Table> getTables(Database database)
Copyright © 2023. All rights reserved.