public enum EnumDatabase extends java.lang.Enum<EnumDatabase>
| Enum Constant and Description |
|---|
MARIADB |
MYSQL |
ORACLE |
POSTGRE |
SQLITE |
| Modifier and Type | Method and Description |
|---|---|
static EnumDatabase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDatabase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDatabase POSTGRE
public static final EnumDatabase MYSQL
public static final EnumDatabase ORACLE
public static final EnumDatabase MARIADB
public static final EnumDatabase SQLITE
public static EnumDatabase[] values()
for (EnumDatabase c : EnumDatabase.values()) System.out.println(c);
public static EnumDatabase valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020. All Rights Reserved.