edu.wpi.prc.persistence
Enum DatabaseType

java.lang.Object
  extended by java.lang.Enum<DatabaseType>
      extended by 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

Enum Constant Summary
HSQLDB
           
MSSQLServer
           
MySQL
           
Oracle
           
PostgreSQL
           
 
Field Summary
private  java.lang.String dbString
           
 
Method Summary
 java.lang.String getConfigurationFileName()
           
 java.lang.String toString()
           
static DatabaseType valueOf(java.lang.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're declared.
 
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
 

Enum Constant Detail

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
Field Detail

dbString

private final java.lang.String dbString
Method Detail

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()