public enum DatabaseSystem extends Enum<DatabaseSystem>
Enum Constant and Description |
---|
ADA
SAP MaxDB/live cache.
|
DB2
DB2 UDB for OS/390.
|
DB4
DB2 UDB for AS/400.
|
DB6
DB2 UDB for Linux and Windows.
|
HDB
SAP HANA database.
|
INF
Informix.
|
MSS
Microsoft SQL Server.
|
ORA
Oracle.
|
SIQ
SAP IQ.
|
SYB
SAP ASE.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseSystem ADA
public static final DatabaseSystem DB2
public static final DatabaseSystem DB4
public static final DatabaseSystem DB6
public static final DatabaseSystem INF
public static final DatabaseSystem MSS
public static final DatabaseSystem ORA
public static final DatabaseSystem HDB
public static final DatabaseSystem SYB
public static final DatabaseSystem SIQ
public static DatabaseSystem[] values()
for (DatabaseSystem c : DatabaseSystem.values()) System.out.println(c);
public static DatabaseSystem 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 © 2018 SAP SE. All rights reserved.