public static enum PersistenceUtil.DatabaseVendor extends Enum<PersistenceUtil.DatabaseVendor>
| Modifier and Type | Method and Description |
|---|---|
static PersistenceUtil.DatabaseVendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistenceUtil.DatabaseVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistenceUtil.DatabaseVendor H2
public static final PersistenceUtil.DatabaseVendor MYSQL
public static final PersistenceUtil.DatabaseVendor POSTGRES
public static final PersistenceUtil.DatabaseVendor UNKNOWN
public static PersistenceUtil.DatabaseVendor[] values()
for (PersistenceUtil.DatabaseVendor c : PersistenceUtil.DatabaseVendor.values()) System.out.println(c);
public static PersistenceUtil.DatabaseVendor 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 © 2009–2021 Opencast Project. All rights reserved.