com.taggercat.model
Enum DataSourceMode

java.lang.Object
  extended by java.lang.Enum<DataSourceMode>
      extended by com.taggercat.model.DataSourceMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataSourceMode>

public enum DataSourceMode
extends java.lang.Enum<DataSourceMode>
implements java.io.Serializable

 

Enum Constant Summary
Deferred
          First query is executed when the datasource is first read
Normal
          First query is executed when the datasource is created
QBF
          First query is executed when the datasource is searched on
 
Method Summary
 java.lang.String getDescription()
           
static DataSourceMode getMode(java.lang.String description)
           
 void setDescription(java.lang.String description)
           
 java.lang.String toString()
           
static DataSourceMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataSourceMode[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Normal

public static final DataSourceMode Normal
First query is executed when the datasource is created


QBF

public static final DataSourceMode QBF
First query is executed when the datasource is searched on


Deferred

public static final DataSourceMode Deferred
First query is executed when the datasource is first read

Method Detail

values

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

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

valueOf

public static DataSourceMode 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.)

Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name

getDescription

public java.lang.String getDescription()
Returns:
the description

setDescription

public void setDescription(java.lang.String description)
Parameters:
description - the description to set

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<DataSourceMode>

getMode

public static DataSourceMode getMode(java.lang.String description)