Uses of Class
com.jenkov.mrpersister.impl.mapping.ObjectMappingKey

Packages that use ObjectMappingKey
com.jenkov.mrpersister.impl.mapping   
 

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

Methods in com.jenkov.mrpersister.impl.mapping that return ObjectMappingKey
static ObjectMappingKey ObjectMappingKey.createInstance(java.lang.Class objectClass)
          Creates an instance of ObjectMappingKey with the object class set only.
static ObjectMappingKey ObjectMappingKey.createInstance(java.lang.Class objectClass, ICustomObjectMapper mapper)
          Creates an instance of ObjectMappingKey with both object class and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstance(java.lang.Class objectClass, java.lang.String name)
          Creates an instance of ObjectMappingKey with both object class and name set.
static ObjectMappingKey ObjectMappingKey.createInstance(java.lang.Class objectClass, java.lang.String name, ICustomObjectMapper mapper)
          Creates an instance of ObjectMappingKey with both object class, name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForAutoGeneratedColumns(java.lang.Class objectClass, java.lang.String[] columns)
          Creates an instance of ObjectMappingKey with both object class, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForAutoGeneratedColumns(java.lang.Class objectClass, java.lang.String name, java.lang.String[] columns)
          Creates an instance of ObjectMappingKey with both object class, name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForAutoGeneratedPrimaryKey(java.lang.Class objectClass)
          Creates an instance of ObjectMappingKey with both object class and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForAutoGeneratedPrimaryKey(java.lang.Class objectClass, java.lang.String name)
          Creates an instance of ObjectMappingKey with both object class, name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForCustomTableAutoGeneratedColumns(java.lang.Class objectClass, java.lang.String[] columns, java.lang.String tableName)
          Creates an instance of ObjectMappingKey with both object class, table name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForCustomTableAutoGeneratedColumns(java.lang.Class objectClass, java.lang.String[] columns, java.lang.String tableName, java.lang.String name)
          Creates an instance of ObjectMappingKey with both object class, table name, name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForCustomTableAutoGeneratedPrimaryKey(java.lang.Class objectClass, java.lang.String tableName)
          Creates an instance of ObjectMappingKey with both object class, table name, and a custom object mapper set.
static ObjectMappingKey ObjectMappingKey.createInstanceForCustomTableAutoGeneratedPrimaryKey(java.lang.Class objectClass, java.lang.String tableName, java.lang.String name)
          Creates an instance of ObjectMappingKey with both object class, table name, name, and a custom object mapper set.