public static enum ConnectionInfo.Flavor extends Enum<ConnectionInfo.Flavor>
| Enum Constant and Description |
|---|
GENERIC |
HSQL |
MYSQL |
ORACLE |
SQL_SERVER |
| Modifier and Type | Method and Description |
|---|---|
static ConnectionInfo.Flavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionInfo.Flavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionInfo.Flavor ORACLE
public static final ConnectionInfo.Flavor SQL_SERVER
public static final ConnectionInfo.Flavor MYSQL
public static final ConnectionInfo.Flavor HSQL
public static final ConnectionInfo.Flavor GENERIC
public static ConnectionInfo.Flavor[] values()
for (ConnectionInfo.Flavor c : ConnectionInfo.Flavor.values()) System.out.println(c);
public static ConnectionInfo.Flavor 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 nullCopyright © 2014. All rights reserved.