public static enum Constants.Database extends Enum<Constants.Database>
| Enum Constant and Description |
|---|
DERBY |
MYSQL |
ORACLE |
ORACLE11 |
POSTGRESQL |
SQLSERVER |
| Modifier and Type | Method and Description |
|---|---|
static Constants.Database |
fromString(String text) |
String |
toString() |
static Constants.Database |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Database[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Database DERBY
public static final Constants.Database MYSQL
public static final Constants.Database ORACLE
public static final Constants.Database ORACLE11
public static final Constants.Database POSTGRESQL
public static final Constants.Database SQLSERVER
public static Constants.Database[] values()
for (Constants.Database c : Constants.Database.values()) System.out.println(c);
public static Constants.Database 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<Constants.Database>public static Constants.Database fromString(String text)
Copyright © 2024 Denodo Technologies. All rights reserved.