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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static UniversalSyntaxServerTypevalueOf(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- 
MSSQLpublic static final UniversalSyntaxServerType MSSQL 
 - 
MSSQLCEpublic static final UniversalSyntaxServerType MSSQLCE 
 - 
MSAccesspublic static final UniversalSyntaxServerType MSAccess 
 - 
MySQLpublic static final UniversalSyntaxServerType MySQL 
 - 
Oraclepublic static final UniversalSyntaxServerType Oracle 
 - 
PostgreSQLpublic static final UniversalSyntaxServerType PostgreSQL 
 - 
Firebirdpublic static final UniversalSyntaxServerType Firebird 
 - 
DB2public static final UniversalSyntaxServerType DB2 
 - 
Sybasepublic static final UniversalSyntaxServerType Sybase 
 - 
Informixpublic static final UniversalSyntaxServerType Informix 
 - 
SQLitepublic static final UniversalSyntaxServerType SQLite 
 - 
Teradatapublic static final UniversalSyntaxServerType Teradata 
 - 
Unknownpublic static final UniversalSyntaxServerType Unknown 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-