Package ru.dest.library.database
Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- ru.dest.library.database.DatabaseType
-
- All Implemented Interfaces:
Serializable,Comparable<DatabaseType>
public enum DatabaseType extends Enum<DatabaseType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description H2LOCALMYSQLPOSTGRESQLSQLITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull IConnectionProvidercreateProvider(ConnectionSettings settings)static @Nullable DatabaseTypeget(@NotNull String type)static DatabaseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DatabaseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MYSQL
public static final DatabaseType MYSQL
-
SQLITE
public static final DatabaseType SQLITE
-
LOCAL
public static final DatabaseType LOCAL
-
H2
public static final DatabaseType H2
-
POSTGRESQL
public static final DatabaseType POSTGRESQL
-
-
Method Detail
-
values
public static DatabaseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DatabaseType c : DatabaseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatabaseType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
createProvider
@NotNull public @NotNull IConnectionProvider createProvider(ConnectionSettings settings) throws Exception
- Throws:
Exception
-
get
@Nullable public static @Nullable DatabaseType get(@NotNull @NotNull String type)
-
-