Enum DBType
- java.lang.Object
-
- java.lang.Enum<DBType>
-
- com.wavemaker.runtime.data.constants.DBType
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSpringSessionSchemaType()java.util.List<java.lang.String>getSupportedJdbcProtocols()java.lang.StringtoValue()static DBTypevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
HSQL
public static final DBType HSQL
-
MYSQL
public static final DBType MYSQL
-
POSTGRES
public static final DBType POSTGRES
-
ORACLE
public static final DBType ORACLE
-
SQL_SERVER
public static final DBType SQL_SERVER
-
DB2
public static final DBType DB2
-
SQLITE
public static final DBType SQLITE
-
REDSHIFT
public static final DBType REDSHIFT
-
SAP_HANA
public static final DBType SAP_HANA
-
OTHER
public static final DBType OTHER
-
-
Method Detail
-
values
public static DBType[] 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 (DBType c : DBType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DBType 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
-
toValue
public java.lang.String toValue()
-
getSupportedJdbcProtocols
public java.util.List<java.lang.String> getSupportedJdbcProtocols()
-
getSpringSessionSchemaType
public java.lang.String getSpringSessionSchemaType()
-
-