public static enum Constants.DatabaseTypes extends Enum<Constants.DatabaseTypes>
Enum Constant and Description |
---|
db2 |
h2 |
mssql |
mysql |
oracle |
postgresql |
Modifier and Type | Method and Description |
---|---|
static Constants.DatabaseTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.DatabaseTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.DatabaseTypes oracle
public static final Constants.DatabaseTypes mssql
public static final Constants.DatabaseTypes mysql
public static final Constants.DatabaseTypes postgresql
public static final Constants.DatabaseTypes h2
public static final Constants.DatabaseTypes db2
public static Constants.DatabaseTypes[] values()
for (Constants.DatabaseTypes c : Constants.DatabaseTypes.values()) System.out.println(c);
public static Constants.DatabaseTypes 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 © 2007–2017 WSO2. All rights reserved.