radtools.services.ror
Enum RoRServerLinux.RoRDatabase.RoRDatabaseAdapter

java.lang.Object
  extended by java.lang.Enum<RoRServerLinux.RoRDatabase.RoRDatabaseAdapter>
      extended by radtools.services.ror.RoRServerLinux.RoRDatabase.RoRDatabaseAdapter
All Implemented Interfaces:
Serializable, Comparable<RoRServerLinux.RoRDatabase.RoRDatabaseAdapter>
Enclosing class:
RoRServerLinux.RoRDatabase

public static enum RoRServerLinux.RoRDatabase.RoRDatabaseAdapter
extends Enum<RoRServerLinux.RoRDatabase.RoRDatabaseAdapter>

TODO: Javadoc

TODO: Unit tests, Code review, Javadoc review, Seal/Finalize TODO: equals, hashCode, toString

Version:
$Revision: 1.8 $
Author:
Greg Gibeling

Enum Constant Summary
MySQL
           
 
Field Summary
private  String string
          TODO: Javadoc
 
Method Summary
 String toString()
           
static RoRServerLinux.RoRDatabase.RoRDatabaseAdapter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RoRServerLinux.RoRDatabase.RoRDatabaseAdapter[] 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

MySQL

public static final RoRServerLinux.RoRDatabase.RoRDatabaseAdapter MySQL
Field Detail

string

private final String string
TODO: Javadoc

Method Detail

values

public static final RoRServerLinux.RoRDatabase.RoRDatabaseAdapter[] 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(RoRServerLinux.RoRDatabase.RoRDatabaseAdapter c : RoRServerLinux.RoRDatabase.RoRDatabaseAdapter.values())
        System.out.println(c);

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

valueOf

public static RoRServerLinux.RoRDatabase.RoRDatabaseAdapter valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name

toString

public String toString()
Overrides:
toString in class Enum<RoRServerLinux.RoRDatabase.RoRDatabaseAdapter>