Uses of Class
org.iworkz.habitat.entity.EntityDefinition
| Package | Description |
|---|---|
| org.iworkz.habitat.command | |
| org.iworkz.habitat.dao | |
| org.iworkz.habitat.dialect | |
| org.iworkz.habitat.entity | |
| org.iworkz.habitat.sql |
-
Uses of EntityDefinition in org.iworkz.habitat.command
Methods in org.iworkz.habitat.command with parameters of type EntityDefinition Modifier and Type Method Description protected <T> PropertyDescriptor[]CommandHelper. createPropertyDescriptorsForClass(EntityDefinition entityDefinition, Class<T> objectClass, GenericDao.CommandCustomizer statementAdapter, ResultSet rs)Constructors in org.iworkz.habitat.command with parameters of type EntityDefinition Constructor Description CommandMetaData(EntityDefinition table) -
Uses of EntityDefinition in org.iworkz.habitat.dao
Methods in org.iworkz.habitat.dao that return EntityDefinition Modifier and Type Method Description EntityDefinitionEntityDao. getEntityDefinition()Methods in org.iworkz.habitat.dao with parameters of type EntityDefinition Modifier and Type Method Description protected voidDatabaseHelper. createTable(EntityDefinition table, Connection connection, boolean onlyIfNotExists)voidDatabaseHelper. dropTableIfExists(EntityDefinition table, Connection connection) -
Uses of EntityDefinition in org.iworkz.habitat.dialect
Methods in org.iworkz.habitat.dialect with parameters of type EntityDefinition Modifier and Type Method Description voidDatabaseDialect. appendFieldDefinitionsSql(StringBuilder sql, EntityDefinition table)voidDatabaseDialect. appendPrimaryKeySqL(StringBuilder sql, EntityDefinition table)StringDatabaseDialect. buildCreateTableIfExistsStatement(EntityDefinition table, boolean onlyIfNotExists)StringDatabaseDialect. buildDropTableIfExistsStatement(EntityDefinition table) -
Uses of EntityDefinition in org.iworkz.habitat.entity
Methods in org.iworkz.habitat.entity that return EntityDefinition Modifier and Type Method Description EntityDefinitionEntityDefinitionCreator. readEntityDefinition(Class<? extends EntityDao> daoClass) -
Uses of EntityDefinition in org.iworkz.habitat.sql
Methods in org.iworkz.habitat.sql with parameters of type EntityDefinition Modifier and Type Method Description <T> StringSQLBuilder. buildDeleteCommand(EntityDefinition entityDefinition)<T> StringSQLBuilder. buildDeleteObjectCommand(EntityDefinition entityDefinition)<T> StringSQLBuilder. buildDeleteWhereCommand(EntityDefinition entityDefinition, String criteriaString)<T> StringSQLBuilder. buildFindCommand(EntityDefinition entityDefinition, Class<T> objectClass, GenericDao.CommandCustomizer statementAdapter, String criteriaString, String orderByString, boolean paging)<T> StringSQLBuilder. buildInsertCommand(EntityDefinition entityDefinition, Class<T> objectClass, GenericDao.CommandCustomizer statementAdapter)<T> StringSQLBuilder. buildLoadCommand(EntityDefinition entityDefinition, Class<T> objectClass, GenericDao.CommandCustomizer statementAdapter)<T> StringSQLBuilder. buildUpdateCommand(EntityDefinition entityDefinition, Class<T> objectClass, GenericDao.CommandCustomizer statementAdapter)