Uses of Class
tech.guilhermekaua.spigotboot.data.jdbc.metadata.EntityMetadata
Packages that use EntityMetadata
Package
Description
-
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.ddl
Methods in tech.guilhermekaua.spigotboot.data.jdbc.ddl with parameters of type EntityMetadata -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.dialect
Methods in tech.guilhermekaua.spigotboot.data.jdbc.dialect with parameters of type EntityMetadataModifier and TypeMethodDescriptiondefault StringDialect.insertDefaultValuesSql(EntityMetadata metadata) Dialect.upsertSql(EntityMetadata metadata) MySQLDialect.upsertSql(EntityMetadata metadata) SQLiteDialect.upsertSql(EntityMetadata metadata) -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.metadata
Methods in tech.guilhermekaua.spigotboot.data.jdbc.metadata that return EntityMetadata -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.methodHandler
Methods in tech.guilhermekaua.spigotboot.data.jdbc.methodHandler with parameters of type EntityMetadata -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.query
Methods in tech.guilhermekaua.spigotboot.data.jdbc.query with parameters of type EntityMetadataModifier and TypeMethodDescriptionQuerySqlBuilder.buildCountSql(EntityMetadata metadata, List<WhereCondition> conditions) QuerySqlBuilder.buildSelectSql(EntityMetadata metadata, List<WhereCondition> conditions, List<OrderByEntry> orderBys, Integer limit, Integer offset) Constructors in tech.guilhermekaua.spigotboot.data.jdbc.query with parameters of type EntityMetadataModifierConstructorDescriptionSelectQuery(EntityMetadata metadata, Dialect dialect, ConnectionProvider connectionProvider) SelectQuery(EntityMetadata metadata, Dialect dialect, ConnectionProvider connectionProvider, EntityMetadataRegistry metadataRegistry) -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.repository.impl
Methods in tech.guilhermekaua.spigotboot.data.jdbc.repository.impl that return EntityMetadataConstructors in tech.guilhermekaua.spigotboot.data.jdbc.repository.impl with parameters of type EntityMetadataModifierConstructorDescriptionJdbcRepositoryImpl(ConnectionProvider connectionProvider, EntityMetadata metadata, Dialect dialect, EntityMetadataRegistry metadataRegistry) -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.repository.mapper
Constructors in tech.guilhermekaua.spigotboot.data.jdbc.repository.mapper with parameters of type EntityMetadataModifierConstructorDescriptionEntityParameterBinder(EntityMetadata metadata) EntityRowMapper(EntityMetadata metadata) -
Uses of EntityMetadata in tech.guilhermekaua.spigotboot.data.jdbc.repository.sql
Methods in tech.guilhermekaua.spigotboot.data.jdbc.repository.sql with parameters of type EntityMetadataModifier and TypeMethodDescriptionCrudSqlGenerator.countSql(EntityMetadata metadata) CrudSqlGenerator.deleteAllSql(EntityMetadata metadata) CrudSqlGenerator.deleteSql(EntityMetadata metadata) CrudSqlGenerator.existsByIdSql(EntityMetadata metadata) CrudSqlGenerator.insertSql(EntityMetadata metadata) CrudSqlGenerator.insertSql(EntityMetadata metadata, boolean skipIdentityId) CrudSqlGenerator.insertSql(EntityMetadata metadata, boolean skipIdentityId, List<String> additionalColumns) CrudSqlGenerator.selectAllSql(EntityMetadata metadata) CrudSqlGenerator.selectByIdSql(EntityMetadata metadata) CrudSqlGenerator.updateSql(EntityMetadata metadata) CrudSqlGenerator.updateSql(EntityMetadata metadata, List<String> additionalColumns) CrudSqlGenerator.upsertSql(EntityMetadata metadata)