Uses of Interface
org.seasar.doma.jdbc.Naming
Packages that use Naming
Package
Description
Internal implementation details for the Doma framework.
Provides JDBC related interfaces and classes.
Provides RDBMS dialects.
Provides classes that are related to identity generation of entity.
Provides query objects that build and execute SQL statements.
-
Uses of Naming in org.seasar.doma.internal
Methods in org.seasar.doma.internal that return Naming -
Uses of Naming in org.seasar.doma.jdbc
Classes in org.seasar.doma.jdbc that implement NamingFields in org.seasar.doma.jdbc declared as NamingModifier and TypeFieldDescriptionstatic final NamingNaming.DEFAULTthe default conventionstatic final NamingConfigSupport.defaultNamingDefault implementation ofNamingfor name conversion between Java and databases.static final NamingNaming.LOWER_CASEthe adapter forNamingType.LOWER_CASEstatic final NamingNaming.NONEthe adapter forNamingType.NONEstatic final NamingNaming.SNAKE_LOWER_CASEthe adapter forNamingType.SNAKE_LOWER_CASEstatic final NamingNaming.SNAKE_UPPER_CASEthe adapter forNamingType.SNAKE_UPPER_CASEstatic final NamingNaming.UPPER_CASEthe adapter forNamingType.UPPER_CASEMethods in org.seasar.doma.jdbc that return NamingModifier and TypeMethodDescriptiondefault NamingConfig.getNaming()Returns the naming convention controller.Methods in org.seasar.doma.jdbc with parameters of type Naming -
Uses of Naming in org.seasar.doma.jdbc.dialect
Fields in org.seasar.doma.jdbc.dialect declared as Naming -
Uses of Naming in org.seasar.doma.jdbc.id
Methods in org.seasar.doma.jdbc.id that return Naming -
Uses of Naming in org.seasar.doma.jdbc.query
Fields in org.seasar.doma.jdbc.query declared as NamingModifier and TypeFieldDescriptionfinal NamingDeleteAssemblerContext.namingThe naming convention used for converting Java names to database names.final NamingInsertAssemblerContext.namingfinal NamingMultiInsertAssemblerContext.namingfinal NamingUpdateAssemblerContext.namingfinal NamingUpsertAssemblerContext.namingMethods in org.seasar.doma.jdbc.query with parameters of type NamingModifier and TypeMethodDescriptionstatic <ENTITY> DeleteAssemblerContext<ENTITY>DeleteAssemblerContextBuilder.build(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, VersionPropertyType<ENTITY, ?, ?> versionPropertyType, TenantIdPropertyType<ENTITY, ?, ?> tenantIdPropertyType, boolean versionIgnored, ENTITY entity, ReturningProperties returning) static <ENTITY> InsertAssemblerContext<ENTITY>InsertAssemblerContextBuilder.build(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, ENTITY entity, ReturningProperties returning) static <ENTITY> UpdateAssemblerContext<ENTITY>UpdateAssemblerContextBuilder.build(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, Naming naming, Dialect dialect, UpdateQueryHelper<ENTITY> updateQueryHelper, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, List<EntityPropertyType<ENTITY, ?>> updatePropertyTypes, VersionPropertyType<ENTITY, ?, ?> versionPropertyType, TenantIdPropertyType<ENTITY, ?, ?> tenantIdPropertyType, boolean versionIgnored, ENTITY entity, ReturningProperties returning) static UpsertAssemblerContextUpsertAssemblerContextBuilder.build(PreparedSqlBuilder buf, EntityType<?> entityType, DuplicateKeyType duplicateKeyType, Naming naming, Dialect dialect, List<EntityPropertyType<?, ?>> keys, List<QueryOperandPair> insertValues, List<QueryOperandPair> setValues) static UpsertAssemblerContextUpsertAssemblerContextBuilder.build(PreparedSqlBuilder buf, EntityType<?> entityType, DuplicateKeyType duplicateKeyType, Naming naming, Dialect dialect, List<EntityPropertyType<?, ?>> keys, List<QueryOperandPair> insertValues, List<QueryOperandPair> setValues, ReturningProperties returning) static <ENTITY> UpsertAssemblerContextUpsertAssemblerContextBuilder.buildFromEntity(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, DuplicateKeyType duplicateKeyType, List<EntityPropertyType<ENTITY, ?>> duplicateKeys, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, ENTITY entity) static <ENTITY> UpsertAssemblerContextUpsertAssemblerContextBuilder.buildFromEntity(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, DuplicateKeyType duplicateKeyType, List<EntityPropertyType<ENTITY, ?>> duplicateKeys, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, ENTITY entity, ReturningProperties returning) static <ENTITY> MultiInsertAssemblerContext<ENTITY>MultiInsertAssemblerContextBuilder.buildFromEntityList(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, List<ENTITY> entities, ReturningProperties returning) static <ENTITY> UpsertAssemblerContextUpsertAssemblerContextBuilder.buildFromEntityList(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, DuplicateKeyType duplicateKeyType, List<EntityPropertyType<ENTITY, ?>> duplicateKeys, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, List<ENTITY> entities) static <ENTITY> UpsertAssemblerContextUpsertAssemblerContextBuilder.buildFromEntityList(PreparedSqlBuilder buf, EntityType<ENTITY> entityType, DuplicateKeyType duplicateKeyType, List<EntityPropertyType<ENTITY, ?>> duplicateKeys, Naming naming, Dialect dialect, List<EntityPropertyType<ENTITY, ?>> idPropertyTypes, List<EntityPropertyType<ENTITY, ?>> insertPropertyTypes, List<ENTITY> entities, ReturningProperties returning) Constructors in org.seasar.doma.jdbc.query with parameters of type NamingModifierConstructorDescriptionUpsertAssemblerSupport(Naming naming, Dialect dialect) Creates a new instance with default alias constants.UpsertAssemblerSupport(Naming naming, Dialect dialect, UpsertAssemblerSupport.UpsertAliasConstants aliasConstants) Creates a new instance with the specified alias constants.