edu.wpi.prc.persistence
Enum DatabaseType
java.lang.Object
java.lang.Enum<DatabaseType>
edu.wpi.prc.persistence.DatabaseType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DatabaseType>
public enum DatabaseType
- extends java.lang.Enum<DatabaseType>
Indicates the type of database used.
- Author:
- James Baldassari
Field Summary |
private java.lang.String |
dbString
|
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
HSQLDB
public static final DatabaseType HSQLDB
MySQL
public static final DatabaseType MySQL
PostgreSQL
public static final DatabaseType PostgreSQL
Oracle
public static final DatabaseType Oracle
MSSQLServer
public static final DatabaseType MSSQLServer
dbString
private final java.lang.String dbString
values
public static final DatabaseType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(DatabaseType c : DatabaseType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static DatabaseType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<DatabaseType>
getConfigurationFileName
public java.lang.String getConfigurationFileName()