Uses of Interface
com.d3x.core.db.DatabaseMapping
-
Packages that use DatabaseMapping Package Description com.d3x.core.db -
-
Uses of DatabaseMapping in com.d3x.core.db
Classes in com.d3x.core.db that implement DatabaseMapping Modifier and Type Class Description private static classDatabase.BasicMapping<T>A generic mapping class for single type(package private) static classDatabaseRecord.MappingA DatabaseMapping for the DatabaseRecord classFields in com.d3x.core.db with type parameters of type DatabaseMapping Modifier and Type Field Description private java.util.Map<java.lang.reflect.Type,DatabaseMapping<?>>Database. mappingsMapMethods in com.d3x.core.db that return DatabaseMapping Modifier and Type Method Description (package private) <T> DatabaseMapping<T>Database. mapping(java.lang.Class<T> type)Returns the mapping for the type specifiedMethods in com.d3x.core.db with parameters of type DatabaseMapping Modifier and Type Method Description static <T> java.lang.StringDatabaseMapping. getDeleteSql(DatabaseMapping<T> mapping)Returns the SQL resolved from the DatabaseSql annotation on the delete methodstatic <T> java.lang.StringDatabaseMapping. getInsertSql(DatabaseMapping<T> mapping)Returns the SQL resolved from the DatabaseSql annotation on the insert methodstatic <T> java.lang.StringDatabaseMapping. getSelectSql(DatabaseMapping<T> mapping)Returns the SQL resolved from the DatabaseSql annotation on the select methodstatic java.lang.StringDatabaseMapping. getSql(DatabaseMapping<?> mapping, java.lang.String methodName)Returns the SQL resolved from the DatabaseSql annotation on the named methodstatic <T> java.lang.StringDatabaseMapping. getUpdateSql(DatabaseMapping<T> mapping)Returns the SQL resolved from the DatabaseSql annotation on the update method<T> voidDatabase. register(DatabaseMapping<T> mapping)Registers a database mapping for a data type
-