com.planet_ink.coffee_mud.Libraries.interfaces
Enum DatabaseEngine.DatabaseTables

java.lang.Object
  extended by java.lang.Enum<DatabaseEngine.DatabaseTables>
      extended by com.planet_ink.coffee_mud.Libraries.interfaces.DatabaseEngine.DatabaseTables
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DatabaseEngine.DatabaseTables>
Enclosing interface:
DatabaseEngine

public static enum DatabaseEngine.DatabaseTables
extends java.lang.Enum<DatabaseEngine.DatabaseTables>

An enum of all the database table types. These are the dividers by which different connections to different databases can be assigned to different tables.


Enum Constant Summary
DBABILITY
           
DBBACKLOG
           
DBCHARCLASS
           
DBCLANS
           
DBJOURNALS
           
DBMAP
           
DBPLAYERDATA
           
DBPLAYERS
           
DBPOLLS
           
DBQUEST
           
DBRACE
           
DBSTATS
           
DBVFS
           
 
Method Summary
static DatabaseEngine.DatabaseTables valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DatabaseEngine.DatabaseTables[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DBABILITY

public static final DatabaseEngine.DatabaseTables DBABILITY

DBCHARCLASS

public static final DatabaseEngine.DatabaseTables DBCHARCLASS

DBRACE

public static final DatabaseEngine.DatabaseTables DBRACE

DBPLAYERS

public static final DatabaseEngine.DatabaseTables DBPLAYERS

DBPLAYERDATA

public static final DatabaseEngine.DatabaseTables DBPLAYERDATA

DBMAP

public static final DatabaseEngine.DatabaseTables DBMAP

DBSTATS

public static final DatabaseEngine.DatabaseTables DBSTATS

DBPOLLS

public static final DatabaseEngine.DatabaseTables DBPOLLS

DBVFS

public static final DatabaseEngine.DatabaseTables DBVFS

DBJOURNALS

public static final DatabaseEngine.DatabaseTables DBJOURNALS

DBQUEST

public static final DatabaseEngine.DatabaseTables DBQUEST

DBCLANS

public static final DatabaseEngine.DatabaseTables DBCLANS

DBBACKLOG

public static final DatabaseEngine.DatabaseTables DBBACKLOG
Method Detail

values

public static DatabaseEngine.DatabaseTables[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DatabaseEngine.DatabaseTables c : DatabaseEngine.DatabaseTables.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DatabaseEngine.DatabaseTables 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
java.lang.NullPointerException - if the argument is null