public enum Vendor extends Enum<Vendor>
| Enum Constant and Description |
|---|
DB2 |
H2 |
HSQL |
INFORMIX |
MSSQL |
MYSQL |
ORACLE |
POSTGRE |
SYBASE |
| Modifier and Type | Method and Description |
|---|---|
static Vendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Vendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Vendor MYSQL
public static final Vendor H2
public static final Vendor DB2
public static final Vendor HSQL
public static final Vendor ORACLE
public static final Vendor MSSQL
public static final Vendor INFORMIX
public static final Vendor POSTGRE
public static final Vendor SYBASE
public static Vendor[] values()
for (Vendor c : Vendor.values()) System.out.println(c);
public static Vendor 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 © 2016–2018. All rights reserved.