com.planet_ink.coffee_mud.Libraries.interfaces
Enum DatabaseEngine.DatabaseTables
java.lang.Object
java.lang.Enum<DatabaseEngine.DatabaseTables>
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.
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 |
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
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