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