| Enum Constant and Description |
|---|
MY_SQL |
POSTGRES_SQL |
SQLITE |
| Modifier and Type | Method and Description |
|---|---|
static DBDriver |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBDriver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PostgreSQL") public static final DBDriver POSTGRES_SQL
@SerializedName(value="MySQL") public static final DBDriver MY_SQL
@SerializedName(value="SQLite") public static final DBDriver SQLITE
public static DBDriver[] values()
for (DBDriver c : DBDriver.values()) System.out.println(c);
public static DBDriver 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 null