|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DBType>
com.dhtmlx.connector.DBType
public enum DBType
The Enum DBType. Stores supported DB types
Enum Constant Summary | |
---|---|
Custom
The Custom DB type ( will be defined by class factory ) |
|
MSSQL
The MSSQL. |
|
MySQL
The MySql. |
|
Oracle
The Oracle. |
|
PostgreSQL
The PostgreSql. |
|
SQL
The Common SQL. |
Method Summary | |
---|---|
static DBType |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DBType SQL
public static final DBType MySQL
public static final DBType Oracle
public static final DBType MSSQL
public static final DBType PostgreSQL
public static final DBType Custom
Method Detail |
---|
public static DBType[] values()
for (DBType c : DBType.values()) System.out.println(c);
public static DBType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |