Uses of Class
com.taggercat.model.DataSourceMode

Packages that use DataSourceMode
com.taggercat.model The model layer of Tagger Cat's web framework 
 

Uses of DataSourceMode in com.taggercat.model
 

Methods in com.taggercat.model that return DataSourceMode
 DataSourceMode DataSourceInitParameter.getMode()
           
 DataSourceMode DataSource.getMode()
          Gets the mode of the data source.
static DataSourceMode DataSourceMode.getMode(java.lang.String description)
           
static DataSourceMode DataSourceMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataSourceMode[] DataSourceMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.taggercat.model with parameters of type DataSourceMode
 void DataSource.init(Model model, java.lang.String dsn, java.lang.String entityName, java.lang.String initialWhereClause, java.lang.String initialOrderByClause, DataSourceMode mode, java.lang.String parentDataSourceName, java.lang.String scope)
          Initializes this data source.
 void DataSource.init(Model model, java.lang.String dsn, java.lang.String entityName, java.lang.String initialWhereClause, java.lang.String initialOrderByClause, DataSourceMode mode, java.lang.String parentDataSourceName, java.lang.String scope, int maxRows, boolean prefetchRowCount, java.lang.Integer pageSize)
          Initializes this data source.
 void DataSource.init(Model model, java.lang.String dsn, java.lang.String entityName, java.lang.String initialWhereClause, java.lang.String initialOrderByClause, DataSourceMode mode, java.lang.String parentDataSourceName, java.lang.String scope, int maxRows, java.lang.Integer pageSize)
          Initializes this data source.
 void DataSourceInitParameter.setMode(DataSourceMode mode)
           
 void DataSource.setMode(DataSourceMode mode)
          Sets the mode of the data source.
 

Constructors in com.taggercat.model with parameters of type DataSourceMode
DataSourceInitParameter(Model model, java.lang.String dsn, java.lang.String entityName, java.lang.String initialWhereClause, java.lang.String initialOrderByClause, DataSourceMode mode, java.lang.String parentDataSourceName, java.lang.String scope, int maxRows, boolean prefetchRowCount, java.lang.Integer pageSize)