Package org.javers.repository.sql
Enum DialectName
- java.lang.Object
-
- java.lang.Enum<DialectName>
-
- org.javers.repository.sql.DialectName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DialectName>
public enum DialectName extends java.lang.Enum<DialectName>
Proper JDBC driver .jar should be provided on the classpath
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.polyjdbc.core.dialect.Dialect
getPolyDialect()
org.polyjdbc.core.dialect.DialectRegistry
getPolyDialectName()
static DialectName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DialectName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
H2
public static final DialectName H2
-
POSTGRES
public static final DialectName POSTGRES
-
ORACLE
public static final DialectName ORACLE
-
MYSQL
public static final DialectName MYSQL
-
MSSQL
public static final DialectName MSSQL
Microsoft SQL Server
-
-
Method Detail
-
values
public static DialectName[] 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 (DialectName c : DialectName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DialectName valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getPolyDialectName
public org.polyjdbc.core.dialect.DialectRegistry getPolyDialectName()
-
getPolyDialect
public org.polyjdbc.core.dialect.Dialect getPolyDialect()
-
-