Package com.adbs.syntax
Enum UniversalSyntaxServerType
- java.lang.Object
-
- java.lang.Enum<UniversalSyntaxServerType>
-
- com.adbs.syntax.UniversalSyntaxServerType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UniversalSyntaxServerType>
public enum UniversalSyntaxServerType extends java.lang.Enum<UniversalSyntaxServerType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UniversalSyntaxServerType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UniversalSyntaxServerType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MSSQL
public static final UniversalSyntaxServerType MSSQL
-
MSSQLCE
public static final UniversalSyntaxServerType MSSQLCE
-
MSAccess
public static final UniversalSyntaxServerType MSAccess
-
MySQL
public static final UniversalSyntaxServerType MySQL
-
Oracle
public static final UniversalSyntaxServerType Oracle
-
PostgreSQL
public static final UniversalSyntaxServerType PostgreSQL
-
Firebird
public static final UniversalSyntaxServerType Firebird
-
DB2
public static final UniversalSyntaxServerType DB2
-
Sybase
public static final UniversalSyntaxServerType Sybase
-
Informix
public static final UniversalSyntaxServerType Informix
-
SQLite
public static final UniversalSyntaxServerType SQLite
-
Teradata
public static final UniversalSyntaxServerType Teradata
-
Unknown
public static final UniversalSyntaxServerType Unknown
-
-
Method Detail
-
values
public static UniversalSyntaxServerType[] 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 (UniversalSyntaxServerType c : UniversalSyntaxServerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UniversalSyntaxServerType 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
-
-