public enum DBTypeInfo extends Enum<DBTypeInfo>
| Enum Constant and Description |
|---|
MicrosoftSQLServer |
MySql |
PostgreSQL |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DBTypeInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBTypeInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBTypeInfo MySql
public static final DBTypeInfo MicrosoftSQLServer
public static final DBTypeInfo PostgreSQL
public static DBTypeInfo[] values()
for (DBTypeInfo c : DBTypeInfo.values()) System.out.println(c);
public static DBTypeInfo 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 nullpublic String toString()
toString in class Enum<DBTypeInfo>Copyright © 2016. All rights reserved.