public enum SGBDType extends java.lang.Enum<SGBDType>
Oracle
MySQL
Enum Constant and Description |
---|
MySQL
Indica que s'utilitza MySQL com a sistema de gestió de base
de dades.
|
Oracle
Indica que s'utilitza l'Oracle com a sistema de gestió de base
de dades.
|
Modifier and Type | Method and Description |
---|---|
static SGBDType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SGBDType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SGBDType Oracle
public static final SGBDType MySQL
public static SGBDType[] values()
for (SGBDType c : SGBDType.values()) System.out.println(c);
public static SGBDType 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 null