public static enum Config.DatabaseName extends java.lang.Enum<Config.DatabaseName>
| Enum Constant and Description |
|---|
HANA |
HSQLDB |
MYSQL |
ORACLE |
POSTGRESQL |
SQLSERVER |
| Modifier and Type | Method and Description |
|---|---|
static Config.DatabaseName |
fromString(java.lang.String dbName) |
java.lang.String |
getName() |
static Config.DatabaseName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Config.DatabaseName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Config.DatabaseName HSQLDB
public static final Config.DatabaseName ORACLE
public static final Config.DatabaseName MYSQL
public static final Config.DatabaseName SQLSERVER
public static final Config.DatabaseName HANA
public static final Config.DatabaseName POSTGRESQL
public static Config.DatabaseName[] values()
for (Config.DatabaseName c : Config.DatabaseName.values()) System.out.println(c);
public static Config.DatabaseName valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()
public static Config.DatabaseName fromString(java.lang.String dbName)
Copyright © 2018 SAP SE. All Rights Reserved.