public enum DataBaseType extends Enum<DataBaseType>
Enum Constant and Description |
---|
Mariadb |
MySql |
Oracle |
Postage |
UNKNOW |
Modifier and Type | Method and Description |
---|---|
static DataBaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataBaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBaseType MySql
public static final DataBaseType Mariadb
public static final DataBaseType Postage
public static final DataBaseType Oracle
public static final DataBaseType UNKNOW
public static DataBaseType[] values()
for (DataBaseType c : DataBaseType.values()) System.out.println(c);
public static DataBaseType 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 © 2020 Voovan. All rights reserved.