Uses of Interface
com.jenkov.mrpersister.itf.mapping.IMethodMapping

Packages that use IMethodMapping
com.jenkov.mrpersister.impl.mapping   
com.jenkov.mrpersister.impl.mapping.method   
com.jenkov.mrpersister.itf.mapping   
 

Uses of IMethodMapping in com.jenkov.mrpersister.impl.mapping
 

Methods in com.jenkov.mrpersister.impl.mapping with parameters of type IMethodMapping
protected  void ObjectMapping.validateMethodMapping(IMethodMapping mapping)
           
 

Uses of IMethodMapping in com.jenkov.mrpersister.impl.mapping.method
 

Classes in com.jenkov.mrpersister.impl.mapping.method that implement IMethodMapping
 class ArrayGetterMapping
          A subclass of GetterMapping capable of inserting an Array into a PreparedStatement.
 class ArraySetterMapping
          A subclass of the SetterMapping capable of reading an Array from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class AsciiStreamGetterMapping
          A subclass of GetterMapping capable of inserting an ascii stream (InputStream) (from a Mr.
 class AsciiStreamSetterMapping
          A subclass of the SetterMapping capable of reading an AsciiStream from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class BigDecimalGetterMapping
          A subclass of GetterMapping capable of inserting a BigDecimal into a PreparedStatement.
 class BigDecimalSetterMapping
          A subclass of the SetterMapping capable of reading a BigDecimal from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class BinaryStreamGetterMapping
          A subclass of GetterMapping capable of inserting a binary stream (InputStream) (from a Mr.
 class BinaryStreamSetterMapping
          A subclass of the SetterMapping capable of reading a BinaryStream from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class BlobGetterMapping
          A subclass of GetterMapping capable of inserting a BlobMock into a PreparedStatement.
 class BlobSetterMapping
          A subclass of the SetterMapping capable of reading a BlobMock from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class BooleanGetterMapping
          A subclass of GetterMapping capable of inserting a Boolean into a PreparedStatement.
 class BooleanSetterMapping
          A subclass of the SetterMapping capable of reading a boolean from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class ByteArrayGetterMapping
          A subclass of GetterMapping capable of inserting a byte array (byte[]) into a PreparedStatement.
 class ByteArraySetterMapping
          A subclass of the SetterMapping capable of reading a byte array (byte[]) from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class ByteGetterMapping
          A subclass of GetterMapping capable of inserting a Byte into a PreparedStatement.
 class ByteSetterMapping
          A subclass of the SetterMapping capable of reading a byte from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class CalendarGetterMapping
           
 class CalendarSetterMapping
           
 class CharacterStreamGetterMapping
          A subclass of GetterMapping capable of inserting a character stream (from a Mr.
 class CharacterStreamSetterMapping
          A subclass of the SetterMapping capable of reading a CharacterStream from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class ClobGetterMapping
          A subclass of GetterMapping capable of inserting a Clob into a PreparedStatement.
 class ClobSetterMapping
          A subclass of the SetterMapping capable of reading a Clob from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class DateGetterMapping
          A subclass of GetterMapping capable of inserting a java.util.Date into a PreparedStatement.
 class DateSetterMapping
          A subclass of the SetterMapping capable of reading a java.util.Date from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class DoubleGetterMapping
          A subclass of GetterMapping capable of inserting a Double into a PreparedStatement.
 class DoubleSetterMapping
          A subclass of the SetterMapping capable of reading a double from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class FloatGetterMapping
          A subclass of GetterMapping capable of inserting a Float into a PreparedStatement.
 class FloatSetterMapping
          A subclass of the SetterMapping capable of reading a float from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class GetterMapping
           
 class IntGetterMapping
          A subclass of GetterMapping capable of inserting a Integer into a PreparedStatement.
 class IntSetterMapping
          A subclass of the SetterMapping capable of reading an int from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class LongGetterMapping
          A subclass of GetterMapping capable of inserting a Long into a PreparedStatement.
 class LongSetterMapping
          A subclass of the SetterMapping capable of reading a long from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class MethodMapping
           
 class ObjectGetterMapping
          A subclass of GetterMapping capable of inserting an Object into a PreparedStatement.
 class ObjectSetterMapping
          A subclass of the SetterMapping capable of reading a Object from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class RefGetterMapping
          A subclass of GetterMapping capable of inserting a Ref into a PreparedStatement.
 class RefSetterMapping
          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.
 class SetterMapping
           
 class ShortGetterMapping
          A subclass of GetterMapping capable of inserting a Short into a PreparedStatement.
 class ShortSetterMapping
          A subclass of the SetterMapping capable of reading a short from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class SqlDateGetterMapping
          A subclass of GetterMapping capable of inserting a java.sql.Date into a PreparedStatement.
 class SqlDateSetterMapping
          A subclass of the SetterMapping capable of reading a java.sql.Date from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class StringGetterMapping
          A subclass of GetterMapping capable of inserting a String into a PreparedStatement.
 class StringSetterMapping
          A subclass of the SetterMapping capable of reading a String from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class TimeGetterMapping
          A subclass of GetterMapping capable of inserting a java.sql.Time into a PreparedStatement.
 class TimeSetterMapping
          A subclass of the SetterMapping capable of reading a java.sql.Time from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class TimestampGetterMapping
          A subclass of GetterMapping capable of inserting a java.sql.Timestamp into a PreparedStatement.
 class TimestampSetterMapping
          A subclass of the SetterMapping capable of reading a java.sql.Timestamp from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 class UrlGetterMapping
          A subclass of GetterMapping capable of inserting a URL into a PreparedStatement.
 class UrlSetterMapping
          A subclass of the SetterMapping capable of reading a URL from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
 

Uses of IMethodMapping in com.jenkov.mrpersister.itf.mapping
 

Subinterfaces of IMethodMapping in com.jenkov.mrpersister.itf.mapping
 interface IGetterMapping
          This interface represents the functions special to getter method mappings.
 interface ISetterMapping
          This interface represents functions special to the setter method mappings.