public enum DatabaseCategory extends java.lang.Enum<DatabaseCategory>
| Enum Constant and Description |
|---|
BIGQUERY
BigQuery driver.
|
H2
The driver that H2 database.
|
MYSQL
The driver that MySQL database.
|
SPANNER
Google Spanner driver.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDriver()
driver name.
|
java.lang.String |
getSchema()
driver schema.
|
static DatabaseCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseCategory MYSQL
public static final DatabaseCategory H2
public static final DatabaseCategory BIGQUERY
public static final DatabaseCategory SPANNER
public static DatabaseCategory[] values()
for (DatabaseCategory c : DatabaseCategory.values()) System.out.println(c);
public static DatabaseCategory valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getSchema()
public java.lang.String getDriver()