public enum ElSqlDatabaseVendor extends Enum<ElSqlDatabaseVendor>
| Enum Constant and Description |
|---|
Default |
HSql |
MySql |
Oracle |
Postgres |
SqlServer2008 |
Veritca |
| Modifier and Type | Method and Description |
|---|---|
static ElSqlDatabaseVendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElSqlDatabaseVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElSqlDatabaseVendor Default
public static final ElSqlDatabaseVendor Postgres
public static final ElSqlDatabaseVendor HSql
public static final ElSqlDatabaseVendor MySql
public static final ElSqlDatabaseVendor Oracle
public static final ElSqlDatabaseVendor SqlServer2008
public static final ElSqlDatabaseVendor Veritca
public static ElSqlDatabaseVendor[] values()
for (ElSqlDatabaseVendor c : ElSqlDatabaseVendor.values()) System.out.println(c);
public static ElSqlDatabaseVendor valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullApache Camel