public enum Identity extends Enum<Identity>
| Enum Constant and Description |
|---|
CLOUDSCAPE |
DB2 |
DB2_MF |
DERBY |
HSQLDB |
INFORMIX |
MYSQL |
SQLSERVER |
SYBASE |
| Modifier and Type | Method and Description |
|---|---|
static Identity |
getDatabaseDialect(String database) |
String |
getIdentityRetrievalStatement() |
static Identity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Identity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Identity DB2
public static final Identity MYSQL
public static final Identity SQLSERVER
public static final Identity CLOUDSCAPE
public static final Identity DERBY
public static final Identity HSQLDB
public static final Identity SYBASE
public static final Identity DB2_MF
public static final Identity INFORMIX
public static Identity[] values()
for (Identity c : Identity.values()) System.out.println(c);
public static Identity 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 getIdentityRetrievalStatement()
Copyright © 2020. All rights reserved.