A B C D E F G H I J K L M N O P R S T U V W

G

generateDeleteStatement(IObjectMapping) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateDeleteStatement(IObjectMapping) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates a delete SQL string based on the given object mapping.
generatedKeys - Variable in class com.jenkov.mrpersister.itf.UpdateResult
 
generateInsertStatement(IObjectMapping) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateInsertStatement(IObjectMapping) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates an insert SQL string based on the given object mapping.
generateReadByPrimaryKeyStatement(IObjectMapping) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateReadByPrimaryKeyStatement(IObjectMapping) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates a read-by-primary-key SQL string based on the given object mapping.
generateReadListByPrimaryKeysStatement(IObjectMapping, int) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateReadListByPrimaryKeysStatement(IObjectMapping, int) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates a read-by-primary-keys SQL string based on the given object mapping.
generateUpdateOptimisticStatement(IObjectMapping) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateUpdateOptimisticStatement(IObjectMapping) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates an update SQL string based on the given object mapping with optimistic locking.
generateUpdateStatement(IObjectMapping) - Method in class com.jenkov.mrpersister.impl.SqlGenerator
 
generateUpdateStatement(IObjectMapping) - Method in interface com.jenkov.mrpersister.itf.ISqlGenerator
Generates an updateBatch SQL string based on the given object mapping.
genericDao - Variable in class com.jenkov.mrpersister.impl.command.Daos
 
GenericDao - Class in com.jenkov.mrpersister.impl
 
GenericDao(Connection, IPersistenceConfiguration) - Constructor for class com.jenkov.mrpersister.impl.GenericDao
 
GenericDaoFactory - Class in com.jenkov.mrpersister.impl
 
GenericDaoFactory() - Constructor for class com.jenkov.mrpersister.impl.GenericDaoFactory
 
GenericDaoFactory(PersistenceManager) - Constructor for class com.jenkov.mrpersister.impl.GenericDaoFactory
 
getAffectedRecords() - Method in class com.jenkov.mrpersister.itf.UpdateResult
 
getAutoCommit() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getCatalog() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getCause() - Method in exception com.jenkov.mrpersister.scope.ScopeException
Returns the root cause of this ScopeException.
getCloseException() - Method in exception com.jenkov.mrpersister.scope.ScopeException
Returns the exception thrown when closing the connection.
getColumn() - Method in class com.jenkov.mrpersister.impl.mapping.Key
 
getColumn() - Method in interface com.jenkov.mrpersister.itf.mapping.IKey
If this key only consists of one column, this method will return that column.
getColumnName() - Method in class com.jenkov.mrpersister.impl.mapping.method.MethodMapping
 
getColumnName() - Method in interface com.jenkov.mrpersister.itf.mapping.IMethodMapping
Returns the database table column name this method method is method to.
getColumns() - Method in class com.jenkov.mrpersister.impl.mapping.Key
 
getColumns() - Method in interface com.jenkov.mrpersister.itf.mapping.IKey
Returns the collection of columns used in this key mapping.
getColumnType(String, String) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameDeterminer
 
getColumnType(String, String) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameDeterminerOld
 
getColumnType() - Method in class com.jenkov.mrpersister.impl.mapping.method.MethodMapping
 
getColumnType(String, String) - Method in interface com.jenkov.mrpersister.itf.mapping.IDbNameDeterminer
Returns the type for a given column in a given table.
getColumnType() - Method in interface com.jenkov.mrpersister.itf.mapping.IMethodMapping
Returns the column type as defined in the database.
getColumnValue(String) - Method in class com.jenkov.mrpersister.impl.mapping.KeyValue
 
getColumnValue(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IKeyValue
Returns the value for the given column.
getColumnValues() - Method in class com.jenkov.mrpersister.impl.mapping.KeyValue
 
getColumnValues() - Method in interface com.jenkov.mrpersister.itf.mapping.IKeyValue
Returns a map of all column values in this key value.
getCommitException() - Method in exception com.jenkov.mrpersister.scope.ScopeException
Returns the exception thrown when committing the transaction.
getConfiguration() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the persistence configuration used by this DAO class.
getConfiguration() - Method in class com.jenkov.mrpersister.impl.command.Daos
 
getConfiguration() - Method in class com.jenkov.mrpersister.impl.GenericDao
 
getConfiguration(Object) - Method in class com.jenkov.mrpersister.impl.PersistenceConfigurationFactory
 
getConfiguration() - Method in interface com.jenkov.mrpersister.itf.command.IDaos
 
getConfiguration() - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Returns the configuration used by this IGenericDao instance.
getConfiguration(Object) - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfigurationFactory
Returns the IPersistenceConfiguration stored by the given key.
getConfiguration(Object) - Static method in class com.jenkov.mrpersister.MrPersister
Deprecated. The responsiblity of caching persistence configurations has been moved to the persistence configuration factory. Use getConfigurationFactory().get()/store() instead.
getConfigurationFactory() - Static method in class com.jenkov.mrpersister.MrPersister
Deprecated. Returns the persistence configuration factory currently in use.
getConfigurationFactory() - Method in class com.jenkov.mrpersister.PersistenceManager
Returns the persistence configuration factory currently in use.
getConfigurationId() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfiguration
 
getConfigurationKey() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getConfigurationKey() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the key by which this persistence configuration is stored internally in the MrPersister class.
getConfigurationOrFail() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the persistence configuration used by this DAO class.
getConnection() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Override this method to return a database connection to the database you want to connect to.
getConnection() - Method in class com.jenkov.mrpersister.impl.command.Daos
 
getConnection() - Method in class com.jenkov.mrpersister.impl.GenericDao
 
getConnection() - Method in interface com.jenkov.mrpersister.itf.command.IDaos
 
getConnection() - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Returns the connection used by this GenericDao instance.
getConnection() - Method in class com.jenkov.mrpersister.jdbc.SimpleDataSource
 
getConnection(String, String) - Method in class com.jenkov.mrpersister.jdbc.SimpleDataSource
 
getConnection() - Method in class com.jenkov.mrpersister.scope.ScopingDataSource
Returns a connection.
getConnection(String, String) - Method in class com.jenkov.mrpersister.scope.ScopingDataSource
Returns a connection.
getConnection(String, String, String, String) - Static method in class com.jenkov.mrpersister.util.JdbcUtil
Opens a connection to the specified database using the JDBC driver class , the url, the user name, and the password provided.
getConnectionCloseException() - Method in exception com.jenkov.mrpersister.itf.PersistenceException
 
getConnectionCloseException() - Method in exception com.jenkov.mrpersister.itf.PersistenceExceptionUnchecked
If the wrapped exception is a PersistenceException, then this method returns getPersistenceException().getConnectionCloseException(); Else it returns null;
getConnectionRollbackException() - Method in exception com.jenkov.mrpersister.itf.PersistenceException
 
getConnectionRollbackException() - Method in exception com.jenkov.mrpersister.itf.PersistenceExceptionUnchecked
If the wrapped exception is a PersistenceException, then this method returns getPersistenceException().getConnectionRollbackException(); Else it returns null;
getCustomObjectMapper() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingKey
 
getCustomObjectMapper() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getCustomObjectMapper() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the custom object mapper of this persistence configuration.
getCustomObjectMapper() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingKey
 
getDaoCommandExecutor() - Method in class com.jenkov.mrpersister.PersistenceManager
 
getDaoCommandExecutorUnchecked() - Method in class com.jenkov.mrpersister.PersistenceManager
 
getDaosFactory() - Method in class com.jenkov.mrpersister.PersistenceManager
 
getDatabase() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getDatabase() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the Database instance representing the database this instance is specialized for.
getDataSource() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getDataSource() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Gets the data source associated with this persistence configuration.
getDataSource() - Method in class com.jenkov.mrpersister.jdbc.DataSourceFactory
 
getDataSource(String) - Method in class com.jenkov.mrpersister.jdbc.DataSourceFactory
 
getDbNameDeterminer() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapper
 
getDbNameDeterminer() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapper
Returns the database name determiner used by this object mapper.
getDbNameGuesser() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapper
 
getDbNameGuesser() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapper
Returns the database name guesser used by this object mapper.
getDbPrimaryKeyDeterminer() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapper
 
getDbPrimaryKeyDeterminer() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapper
Returns the database primary key determiner used by this object mapper.
getDefaultConfiguration() - Method in class com.jenkov.mrpersister.PersistenceManager
Returns the default persistence configuration of this PersistenceManager.
getDeleteSqlCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getDeleteSqlCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL cache used to store delete statements in this persistence configuration.
getDriver() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfiguration
 
getDriverParam() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfigurationParser
 
getGeneratedKeyAsBigDecimal(int) - Method in class com.jenkov.mrpersister.itf.UpdateResult
 
getGeneratedKeyAsLong(int) - Method in class com.jenkov.mrpersister.itf.UpdateResult
 
getGeneratedKeys() - Method in class com.jenkov.mrpersister.itf.UpdateResult
 
getGenericDao() - Method in class com.jenkov.mrpersister.impl.command.Daos
 
getGenericDao() - Method in interface com.jenkov.mrpersister.itf.command.IDaos
 
getGenericDaoFactory() - Static method in class com.jenkov.mrpersister.MrPersister
Deprecated. Returns the generic dao factory currently used by Mr Persister.
getGenericDaoFactory() - Method in class com.jenkov.mrpersister.PersistenceManager
Returns the generic dao factory currently used by Mr Persister.
getGetterMapping(String) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getGetterMapping(Method) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getGetterMapping(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the getter method method that is mapped to the database column name passed in parameter columnName.
getGetterMapping(Method) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the getter method method that is mapped to the object method passed as parameter objectMethod.
getGetterMappings() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getGetterMappings() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the method mappings that are mapped to getter methods on the mapped object class.
getHoldability() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getId() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingKey
Returns the id of this object mapping key.
getId() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingKey
Deprecated. Although an internal id is used to distinguish one object mapping key from another (used by the equals method), this id should not be publicly available.
getInputStream() - Method in class com.jenkov.mrpersister.impl.mapping.method.AsciiStream
 
getInputStream() - Method in class com.jenkov.mrpersister.impl.mapping.method.BinaryStream
 
getInsertSqlCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getInsertSqlCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL cache used to store insert SQL statements in this persistence configuration.
getInterfacesForObject(Object) - Static method in class com.jenkov.mrpersister.scope.ScopeFactory
Returns all interfaces implemented by this objects class.
getJdbcDao() - Method in class com.jenkov.mrpersister.impl.command.Daos
 
getJdbcDao() - Method in interface com.jenkov.mrpersister.itf.command.IDaos
 
getLength() - Method in class com.jenkov.mrpersister.impl.mapping.method.AsciiStream
 
getLength() - Method in class com.jenkov.mrpersister.impl.mapping.method.BinaryStream
 
getLength() - Method in class com.jenkov.mrpersister.impl.mapping.method.CharacterStream
 
getLoginTimeout() - Method in class com.jenkov.mrpersister.jdbc.SimpleDataSource
Not supported.
getLoginTimeout() - Method in class com.jenkov.mrpersister.scope.ScopingDataSource
 
getLogWriter() - Method in class com.jenkov.mrpersister.jdbc.SimpleDataSource
Not supported.
getLogWriter() - Method in class com.jenkov.mrpersister.scope.ScopingDataSource
 
getMapDao() - Method in class com.jenkov.mrpersister.impl.command.Daos
 
getMapDao() - Method in interface com.jenkov.mrpersister.itf.command.IDaos
 
getMemberType(Method) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingFactory
 
getMetaData() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getName() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingKey
Returns the name of this object mapping key.
getName() - Method in class com.jenkov.mrpersister.itf.Database
 
getName() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingKey
 
getObjectCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getObjectClass() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getObjectClass() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingKey
Returns the class mapped by the object mapping this ObjectMappingKey instance is key for.
getObjectClass() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the class that this object method maps.
getObjectClass() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingKey
 
getObjectMapper() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the object mapper set in the persistence configuration used by this DAO class.
getObjectMapper() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the object mapper set in the persistence configuration used by this DAO class.
getObjectMapper() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getObjectMapper() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the object mapper used in this persistence configuration.
getObjectMapping(Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the object mapping stored in the object mapping cache by the given method key.
getObjectMapping(Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the object mapping stored in the object mapping cache by the given method key.
getObjectMapping(Object) - Method in class com.jenkov.mrpersister.impl.mapping.CustomObjectMapperBase
 
getObjectMapping(Object, IPersistenceConfiguration, Connection) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapper
 
getObjectMapping(Object) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingCache
 
getObjectMapping(Object) - Method in interface com.jenkov.mrpersister.itf.mapping.ICustomObjectMapper
Creates an object mapping for the given object mapping key.
getObjectMapping(Object, IPersistenceConfiguration, Connection) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapper
Returns an object mapping from the cache in the given configuration, if one already exists.
getObjectMapping(Object) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingCache
Returns the object-to-database method for the given method key, stored in this object method cache.
getObjectMappingCache() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the object mapping cache from the persistence configuration used by this DAO class.
getObjectMappingCache() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the object mapping cache from the persistence configuration used by this DAO class.
getObjectMappingCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getObjectMappingCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the object mapping cache used in this persistence configuration.
getObjectMappingFactory() - Method in class com.jenkov.mrpersister.impl.AbstractDao
A utility method that returns the object mapping factory instance returned by MrPersister.getObjectMappingFactory().
getObjectMappingFactory() - Static method in class com.jenkov.mrpersister.MrPersister
Deprecated. Returns the object method factory set for the Mr Persister API.
getObjectMappingFactory() - Method in class com.jenkov.mrpersister.PersistenceManager
Returns the object method factory set for the Mr Persister API.
getObjectMethod() - Method in class com.jenkov.mrpersister.impl.mapping.method.MethodMapping
 
getObjectMethod() - Method in interface com.jenkov.mrpersister.itf.mapping.IMethodMapping
Returns the method instance this method method is method from.
getObjectReader() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the object reader used in the persistence configuration used by this DAO class.
getObjectReader() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the object reader used in the persistence configuration used by this DAO class.
getObjectReader() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getObjectReader() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the object reader used in this persistence configuration.
getObjectWriter() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the object writer used in the persistence configuration used by this DAO class.
getObjectWriter() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the object writer used in the persistence configuration used by this DAO class.
getObjectWriter() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getObjectWriter() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the object writer used in this persistence configuration.
getOrCreateConfiguration(Object) - Method in class com.jenkov.mrpersister.impl.PersistenceConfigurationFactory
 
getOrCreateConfiguration(Object, Database) - Method in class com.jenkov.mrpersister.impl.PersistenceConfigurationFactory
 
getOrCreateConfiguration(Object) - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfigurationFactory
Returns the IPersistenceConfiguration instance stored by the given key.
getOrCreateConfiguration(Object, Database) - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfigurationFactory
Returns the IPersistenceConfiguration instance stored by the given key.
getOriginalConnection() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
Returns the wrapped connection.
getPassword() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfiguration
 
getPasswordParam() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfigurationParser
 
getPersistenceException() - Method in exception com.jenkov.mrpersister.itf.PersistenceExceptionUnchecked
Returns the wrapped PersistenceException if any.
getPersistenceManager() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getPossibleColumnNames(Method) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameGuesser
 
getPossibleColumnNames(Method) - Method in interface com.jenkov.mrpersister.itf.mapping.IDbNameGuesser
Returns a List containing possible database column names for the given class objectMethod name.
getPossibleNames(String) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameGuesser
 
getPossibleTableNames(Class) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameGuesser
 
getPossibleTableNames(Class) - Method in interface com.jenkov.mrpersister.itf.mapping.IDbNameGuesser
Returns a List containing possible table names for the given class name.
getPrimaryKey() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKey() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the current primary key mapping.
getPrimaryKeyColumnName(String, String, Connection) - Method in class com.jenkov.mrpersister.impl.mapping.DbPrimaryKeyDeterminer
Deprecated. This method doesn't support compound keys (multi-column keys). Use the getPrimaryKeyMapping method instead.
getPrimaryKeyColumnName(String, String, Connection) - Method in class com.jenkov.mrpersister.impl.mapping.HsqldbPrimaryKeyDeterminer
 
getPrimaryKeyColumnName() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKeyColumnName(String, String, Connection) - Method in interface com.jenkov.mrpersister.itf.mapping.IDbPrimaryKeyDeterminer
Deprecated. Use the getPrimaryKeyColumnsinstead
getPrimaryKeyColumnName() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Deprecated. Use the getPrimaryKey() instead. The IKey interface supports compound keys.
getPrimaryKeyGetterMapping() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKeyGetterMapping() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Deprecated. Use the getPrimaryKey() instead. The IKey interface supports compound keys.
getPrimaryKeyMapping(String, String, Connection) - Method in class com.jenkov.mrpersister.impl.mapping.DbPrimaryKeyDeterminer
 
getPrimaryKeyMapping(String, String, Connection) - Method in class com.jenkov.mrpersister.impl.mapping.HsqldbPrimaryKeyDeterminer
 
getPrimaryKeyMapping(String, String, Connection) - Method in interface com.jenkov.mrpersister.itf.mapping.IDbPrimaryKeyDeterminer
Returns a list of the columns that are part of the
getPrimaryKeySetterMapping() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKeySetterMapping() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Deprecated. Use the getPrimaryKey() instead. The IKey interface supports compound keys.
getPrimaryKeyValueForObject(Object, IKeyValue) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKeyValueForObject(Object, IKeyValue) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns an IKeyValue instance matching the primary key of this object mapping, and with the key values extracted from the given object.
getPrimaryKeyValueForRecord(ResultSet, IKeyValue) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getPrimaryKeyValueForRecord(ResultSet, IKeyValue) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the primary key value as an IKeyValue instance for the record the ResultSet is pointing to.
getReadByPrimaryKeySqlCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getReadByPrimaryKeySqlCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL cache used to store read-by-primary-key SQL statements in this persistence configuration.
getReader() - Method in class com.jenkov.mrpersister.impl.mapping.method.CharacterStream
 
getResult() - Method in class com.jenkov.mrpersister.impl.ResultSetProcessorBase
 
getResult() - Method in interface com.jenkov.mrpersister.itf.IResultSetProcessor
Returns the result of the total processing.
getRollbackException() - Method in exception com.jenkov.mrpersister.scope.ScopeException
Returns the exception thrown when rolling back the transaction.
getScopeFactory() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getScopeFactory() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the scope factory matching the data source set on this persistence configuration.
getScopingDataSource() - Method in interface com.jenkov.mrpersister.scope.IScopeFactory
Returns the ScopingDataSource used by this IScopeFactory.
getScopingDataSource() - Method in class com.jenkov.mrpersister.scope.ScopeFactory
 
getSetAutoCommitFalseException() - Method in exception com.jenkov.mrpersister.scope.ScopeException
Returns the exception thrown when calling setAutoCommit(false) on the connection.
getSetterMapping(String) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getSetterMapping(Method) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getSetterMapping(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the setter method method that is mapped to the database column name passed in parameter columnName.
getSetterMapping(Method) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the setter method method that is mapped to the object method passed as parameter objectMethod.
getSetterMappings() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getSetterMappings() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the method mappings that are mapped to setter methods on the mapped object class.
getSqlFromCache(Object, ISqlCache) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the SQL string stored in the given cache by the given object mapping key.
getSqlFromCache(Object, ISqlCache) - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the SQL string stored in the given cache by the given object mapping key.
getSqlGenerator() - Method in class com.jenkov.mrpersister.impl.AbstractDao
Returns the SQL generator used in the persistence configuration used by this DAO class.
getSqlGenerator() - Method in class com.jenkov.mrpersister.impl.GenericDao
Returns the SQL generator used in the persistence configuration used by this DAO class.
getSqlGenerator() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getSqlGenerator() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL generator used with this persistence configuration.
getStatement(Object) - Method in class com.jenkov.mrpersister.impl.SqlCache
 
getStatement(Object) - Method in interface com.jenkov.mrpersister.itf.ISqlCache
Returns the SQL statement for this object method key.
getTable() - Method in class com.jenkov.mrpersister.impl.mapping.Key
 
getTable() - Method in interface com.jenkov.mrpersister.itf.mapping.IKey
Returns the table this key mapping points to.
getTableName(Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Override this method to provide a table name for an object mapping key (a class to be mapped) If this method returns null the AbstractDao will ask the ObjectMapper to try to guess the matching table for a class.
getTableName(Object) - Method in class com.jenkov.mrpersister.impl.mapping.CustomObjectMapperBase
 
getTableName() - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getTableName(Object) - Method in interface com.jenkov.mrpersister.itf.mapping.ICustomObjectMapper
 
getTableName() - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Returns the name of the database table that this object method maps to.
GetterMapping - Class in com.jenkov.mrpersister.impl.mapping.method
 
GetterMapping() - Constructor for class com.jenkov.mrpersister.impl.mapping.method.GetterMapping
 
getterMappingMap - Variable in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getterMappingSet - Variable in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
getTransactionIsolation() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getTypeMap() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getUpdateOptimisticSqlCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getUpdateOptimisticSqlCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL cache used to store updateOptimistic SQL statements in this persistence configuration.
getUpdateResult(int) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
getUpdateResult(int) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Returns an UpdateResult instance.
getUpdateResults() - Method in class com.jenkov.mrpersister.impl.GenericDao
 
getUpdateResults() - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Returns a List of UpdateResult instances.
getUpdateSqlCache() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
getUpdateSqlCache() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Returns the SQL cache used to store updateBatch SQL statements in this persistence configuration.
getUrl() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfiguration
 
getUrlParam() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfigurationParser
 
getUser() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfiguration
 
getUserParam() - Method in class com.jenkov.mrpersister.jdbc.DatabaseConfigurationParser
 
getValueFromResultSet(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.SetterMapping
 
getValueFromResultSet(ResultSet) - Method in interface com.jenkov.mrpersister.itf.mapping.ISetterMapping
Returns the value from column in the ResultSet that this Setter mapping maps to.
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ArraySetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.AsciiStreamSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.BigDecimalSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.BinaryStreamSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.BlobSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.BooleanSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ByteArraySetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ByteSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.CalendarSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.CharacterStreamSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ClobSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.DateSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.DoubleSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.FloatSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.IntSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.LongSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ObjectSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.RefSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.SetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.ShortSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.SqlDateSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.StringSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.TimeSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.TimestampSetterMapping
 
getValueFromResultSetDo(ResultSet) - Method in class com.jenkov.mrpersister.impl.mapping.method.UrlSetterMapping
 
getWarnings() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
getWords(String) - Method in class com.jenkov.mrpersister.impl.mapping.DbNameGuesser
 

A B C D E F G H I J K L M N O P R S T U V W