Package org.seasar.doma.quarkus.runtime
Enum DomaSettings.DialectType
- java.lang.Object
-
- java.lang.Enum<DomaSettings.DialectType>
-
- org.seasar.doma.quarkus.runtime.DomaSettings.DialectType
-
- All Implemented Interfaces:
Serializable,Comparable<DomaSettings.DialectType>
- Enclosing class:
- DomaSettings
public static enum DomaSettings.DialectType extends Enum<DomaSettings.DialectType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.seasar.doma.jdbc.dialect.Dialectcreate()static DomaSettings.DialectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DomaSettings.DialectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DB2
public static final DomaSettings.DialectType DB2
-
H2
public static final DomaSettings.DialectType H2
-
MSSQL
public static final DomaSettings.DialectType MSSQL
-
MYSQL
public static final DomaSettings.DialectType MYSQL
-
ORACLE
public static final DomaSettings.DialectType ORACLE
-
POSTGRES
public static final DomaSettings.DialectType POSTGRES
-
STANDARD
public static final DomaSettings.DialectType STANDARD
-
SQLITE
public static final DomaSettings.DialectType SQLITE
-
-
Method Detail
-
values
public static DomaSettings.DialectType[] 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 (DomaSettings.DialectType c : DomaSettings.DialectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomaSettings.DialectType 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
-
create
public org.seasar.doma.jdbc.dialect.Dialect create()
-
-