public enum DBType extends Enum<DBType>
| Enum Constant and Description |
|---|
MY_SQL |
POSTGRESQL |
SQ_LITE |
| Modifier and Type | Method and Description |
|---|---|
static DBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBType MY_SQL
public static final DBType POSTGRESQL
public static final DBType SQ_LITE
public static DBType[] values()
for (DBType c : DBType.values()) System.out.println(c);
public static DBType 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 nullCopyright © 2024. All rights reserved.