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

R

read(Object, String) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given SQL string.
read(Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given SQL string.
read(Object, ResultSet) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the given ResultSet using the object mapping stored by the given object mapping key.
read(Object, Statement, String) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the given Statement instance, the given SQL string, and the object mapping stored by the given object mapping key.
read(Object, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the given PreparedStatement instance, and the object mapping stored by the given object mapping key.
read(Object, String) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(Object, ResultSet) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(Object, Statement, String) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(Object, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(Object, String, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(Object, String, Object[]) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
read(String, IResultSetProcessor) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
read(String, Object[], IResultSetProcessor) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
read(String, IPreparedStatementManager, IResultSetProcessor) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
read(IObjectMapping, ResultSet, Object) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, ResultSet) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, Statement, String) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, PreparedStatement, Object) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, String, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(IObjectMapping, String, Object[], Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
read(Object, String) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given SQL string.
read(Object, ResultSet) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the given ResultSet using the object mapping stored by the given object mapping key.
read(Object, Statement, String) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the given Statement instance, the given SQL string, and the object mapping stored by the given object mapping key.
read(Object, PreparedStatement) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the given PreparedStatement instance, and the object mapping stored by the given object mapping key.
read(Object, String, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the given SQL string, the parameters, and the object mapping stored by the given object mapping key.
read(Object, String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the given SQL string, the parameters, and the object mapping stored by the given object mapping key.
read(String, IResultSetProcessor) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL and calls the IResultSetProcessor's process(...) method for each record in the ResultSet.
read(String, Object[], IResultSetProcessor) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL and calls the IResultSetProcessor's process(...) method for each record in the ResultSet.
read(String, IPreparedStatementManager, IResultSetProcessor) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL and calls the IResultSetProcessor's process(...) method for each record in the ResultSet.
read(IObjectMapping, ResultSet) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the given ResultSet using the given object mapping.
read(IObjectMapping, Statement, String) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object using the provided object mapping, SQL and Statement instance.
read(IObjectMapping, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object using the given object mappping, SQL, and the Connection instance.
read(IObjectMapping, PreparedStatement) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the database using the given object mapping and PreparedStatement.
read(IObjectMapping, String, Collection, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the database using the given object mapping, SQL string, and parameters.
read(IObjectMapping, String, Object[], Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the database using the given object mapping, SQL string, and parameters.
readByPrimaryKey(Object, Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given primary key to identify the record in the database that coresponds to the object to be read.
readByPrimaryKey(Object, Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given primary key to identify the record in the database that coresponds to the object to be read.
readByPrimaryKey(Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readByPrimaryKey(IObjectMapping, Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readByPrimaryKey(IObjectMapping, IKeyValue, Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readByPrimaryKey(IObjectMapping, IKeyValue, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readByPrimaryKey(Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a single object from the database using the object mapping stored by the given object mapping key, and the given primary key to identify the record in the database that coresponds to the object to be read.
readByPrimaryKey(IObjectMapping, Object, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the database using an object mapping, the primary key, an SQL string (explained below) and a database connection.
readByPrimaryKey(IObjectMapping, IKeyValue, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads an object from the database using an object mapping, the primary key, an SQL string (explained below) and a database connection.
readByPrimaryKeySqlCache - Variable in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
reader - Variable in class com.jenkov.mrpersister.impl.mapping.method.CharacterStream
 
reader - Variable in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
readIdString(String) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
readIdString(String, Object[]) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
readIdString(String, IPreparedStatementManager) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
readIdString(String) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Reads all the ids located by the given SQL into an id string that can be used in an SQL select ...
readIdString(String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Reads all the ids located by the given SQL into an id string that can be used in an SQL select ...
readIdString(String, IPreparedStatementManager) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Reads all the ids located by the given SQL into an id string that can be used in an SQL select ...
readList(Object, String) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, ResultSet) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the given ResultSet using the object mapping stored or generated by the given object mapping key.
readList(Object, Statement, String) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the given Statement instance, the given SQL string and the object mapping stored or generated by the given object mapping key.
readList(Object, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key and PreparedStatement instance.
readList(Object, String, IReadFilter) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, String, Connection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, ResultSet, IReadFilter) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the given ResultSet using the object mapping stored or generated by the given object mapping key.
readList(Object, Statement, String, IReadFilter) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the given Statement instance, the given SQL string and the object mapping stored or generated by the given object mapping key.
readList(Object, PreparedStatement, IReadFilter) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key and PreparedStatement instance.
readList(Object, String) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, ResultSet) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, Statement, String) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, String, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, String, Object[]) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, String, IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, ResultSet, IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, Statement, String, IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, PreparedStatement, IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, String, Collection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(Object, String, Object[], IReadFilter) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readList(IObjectMapping, ResultSet) - Method in class com.jenkov.mrpersister.impl.ObjectReader
LIST READ METHODS BELOW
readList(IObjectMapping, Statement, String) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, PreparedStatement) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Object[], Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, ResultSet, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
FILTERED READ LIST METHODS BELOW
readList(IObjectMapping, ResultSet, IReadFilter, Collection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, ResultSet, IReadFilter, Map) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, Statement, String, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Connection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, PreparedStatement, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, PreparedStatement, IReadFilter, Collection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Collection, Connection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(IObjectMapping, String, Object[], Connection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readList(Object, String) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, ResultSet) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the given ResultSet using the object mapping stored or generated by the given object mapping key.
readList(Object, Statement, String) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the database using the given Statement instance, the given SQL string and the object mapping stored or generated by the given object mapping key.
readList(Object, PreparedStatement) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key and PreparedStatement instance.
readList(Object, String, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key, and a PreparedStatement instance created from the sql parameter, and the parameter collection.
readList(Object, String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key, and a PreparedStatement instance created from the sql parameter, and the parameter array.
readList(Object, String, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the database using the object mapping stored or generated by the given object mapping key, and the given SQL string.
readList(Object, ResultSet, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the given ResultSet using the object mapping stored or generated by the given object mapping key.
readList(Object, Statement, String, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the database using the given Statement instance, the given SQL string and the object mapping stored or generated by the given object mapping key.
readList(Object, PreparedStatement, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key and PreparedStatement instance.
readList(Object, String, Collection, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key, and a PreparedStatement instance created from the sql parameter, and the parameter array.
readList(Object, String, Object[], IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects using the object mapping stored or generated by the given object mapping key, and a PreparedStatement instance created from the sql parameter, and the parameter array.
readList(IObjectMapping, ResultSet) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the given ResultSet using the object mapping.
readList(IObjectMapping, ResultSet, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the given ResultSet using the given object mapping and read filter.
readList(IObjectMapping, Statement, String) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, Statement and SQL string.
readList(IObjectMapping, Statement, String, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, Statement and SQL string.
readList(IObjectMapping, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and Connection.
readList(IObjectMapping, String, Connection, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and Connection.
readList(IObjectMapping, PreparedStatement) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping and PreparedStatement.
readList(IObjectMapping, String, Collection, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and parameters.
readList(IObjectMapping, String, Object[], Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and parameters.
readList(IObjectMapping, PreparedStatement, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping and PreparedStatement.
readList(IObjectMapping, String, Collection, Connection, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and parameters.
readList(IObjectMapping, String, Object[], Connection, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using the given object mapping, SQL string, and parameters.
readListByPrimaryKeys(Object, Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored by the given object mapping key, and the given primary keys to identify the records in the database that coresponds to the objects to be read.
readListByPrimaryKeys(Object, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Reads a list of objects from the database using the object mapping stored by the given object mapping key, and the given primary keys to identify the records in the database that coresponds to the objects to be read.
readListByPrimaryKeys(Object, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
readListByPrimaryKeys(IObjectMapping, Collection, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readListByPrimaryKeys(IObjectMapping, Collection, String, Connection, IReadFilter) - Method in class com.jenkov.mrpersister.impl.ObjectReader
 
readListByPrimaryKeys(Object, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Reads a list of objects from the database using the object mapping stored by the given object mapping key, and the given primary keys to identify the records in the database that coresponds to the objects to be read.
readListByPrimaryKeys(IObjectMapping, Collection, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using an object mapping, the primary keys of the objects to read, an SQL string (explained below) and a database connection.
readListByPrimaryKeys(IObjectMapping, Collection, String, Connection, IReadFilter) - Method in interface com.jenkov.mrpersister.itf.IObjectReader
Reads a list of objects from the database using an object mapping, the primary keys of the objects to read, an SQL string (explained below) and a database connection.
readLong(String) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
readLong(String, Object[]) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
readLong(String) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Reads a long from the database using the given SQL query.
readLong(String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Reads a long from the database using the given SQL query.
readMap(String) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMap(String, Object[]) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMap(String, IPreparedStatementManager) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMap(String) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
readMap(String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
readMap(String, IPreparedStatementManager) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
readMapList(String) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMapList(String, Object[]) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMapList(String, IPreparedStatementManager) - Method in class com.jenkov.mrpersister.impl.MapDao
 
readMapList(String) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
readMapList(String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
readMapList(String, IPreparedStatementManager) - Method in interface com.jenkov.mrpersister.itf.IMapDao
 
RefGetterMapping - Class in com.jenkov.mrpersister.impl.mapping.method
A subclass of GetterMapping capable of inserting a Ref into a PreparedStatement.
RefGetterMapping() - Constructor for class com.jenkov.mrpersister.impl.mapping.method.RefGetterMapping
 
RefSetterMapping - Class in com.jenkov.mrpersister.impl.mapping.method
A subclass of the SetterMapping capable of reading a Set from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
RefSetterMapping() - Constructor for class com.jenkov.mrpersister.impl.mapping.method.RefSetterMapping
 
releaseSavepoint(Savepoint) - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
removeColumn(String) - Method in class com.jenkov.mrpersister.impl.mapping.Key
 
removeColumn(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IKey
Removes a column from this key mapping
removeColumnValue(String) - Method in class com.jenkov.mrpersister.impl.mapping.KeyValue
 
removeColumnValue(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IKeyValue
Removes a column value from this key value.
removeConfiguration(Object) - Method in class com.jenkov.mrpersister.impl.PersistenceConfigurationFactory
 
removeConfiguration(Object) - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfigurationFactory
Removes the IPersistenceConfiguration stored by the given key.
removeConfiguration(Object) - Static method in class com.jenkov.mrpersister.MrPersister
Deprecated. The responsiblity of caching persistence configurations has been moved to the persistence configuration factory.
removeGetterFieldMapping(IGetterMapping) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeGetterMapping(String) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeGetterMapping(Method) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeGetterMapping(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Removes the getter method method that maps to the provided database column name (column in table).
removeGetterMapping(Method) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Removes the getter method method that maps from the given Method to some database column.
removeObjectMapping(Object) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMappingCache
 
removeObjectMapping(Object) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMappingCache
Removes the object method stored in this cache for the given method key.
removeSetterFieldMapping(ISetterMapping) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeSetterMapping(String) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeSetterMapping(Method) - Method in class com.jenkov.mrpersister.impl.mapping.ObjectMapping
 
removeSetterMapping(String) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Removes the setter method method that maps to the given database column name (column in table).
removeSetterMapping(Method) - Method in interface com.jenkov.mrpersister.itf.mapping.IObjectMapping
Removes the setter method method that maps from the given Method to some database column.
removeStatement(Object) - Method in class com.jenkov.mrpersister.impl.SqlCache
 
removeStatement(Object) - Method in interface com.jenkov.mrpersister.itf.ISqlCache
Removes the SQL statement stored for this object method key.
result - Variable in class com.jenkov.mrpersister.impl.ResultSetProcessorBase
 
ResultSetProcessorBase - Class in com.jenkov.mrpersister.impl
 
ResultSetProcessorBase() - Constructor for class com.jenkov.mrpersister.impl.ResultSetProcessorBase
 
rollback() - Method in class com.jenkov.mrpersister.impl.GenericDao
 
rollback() - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Calls rollback() on the underlying connection.
rollback() - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
rollback(Savepoint) - Method in class com.jenkov.mrpersister.scope.ScopingConnection
 
rollbackException - Variable in exception com.jenkov.mrpersister.scope.ScopeException
 
rowsAccepted - Variable in class com.jenkov.mrpersister.impl.filter.PageReadFilter
 
run() - Method in class com.jenkov.mrpersister.MappingTool
This method does the hard work.

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