streamcruncher.api
Enum DBName

java.lang.Object
  extended by java.lang.Enum<DBName>
      extended by streamcruncher.api.DBName
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DBName>

public enum DBName
extends java.lang.Enum<DBName>

The names of Databases supported by the Kernel. The spelling and case must be noted while specifying them in the config-file.


Enum Constant Summary
Ants
           
Derby
           
Firebird
           
H2
           
MySQL
           
Oracle
           
OracleTT
           
PointBase
           
Solid
           
 
Method Summary
static DBName valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DBName[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Ants

public static final DBName Ants

Derby

public static final DBName Derby

Firebird

public static final DBName Firebird

H2

public static final DBName H2

MySQL

public static final DBName MySQL

Oracle

public static final DBName Oracle

OracleTT

public static final DBName OracleTT

PointBase

public static final DBName PointBase

Solid

public static final DBName Solid
Method Detail

values

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

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

valueOf

public static DBName 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


Copyright © 2006 - 2008 Ashwin Jayaprakash. All Rights Reserved. (Docs generated on 3-November-2007 )