Uses of Interface
st.orm.template.TableNameResolver
Packages that use TableNameResolver
-
Uses of TableNameResolver in st.orm.template
Fields in st.orm.template declared as TableNameResolverModifier and TypeFieldDescriptionstatic final TableNameResolverTableNameResolver.DEFAULTThe default table name resolver.Methods in st.orm.template that return TableNameResolverModifier and TypeMethodDescriptionstatic TableNameResolverTableNameResolver.camelCaseToSnakeCase()Resolves the table name for a given record type using camel case to snake case conversion.SqlTemplate.tableNameResolver()Returns the table name resolver that is used by this template.static TableNameResolverTableNameResolver.toUpperCase(TableNameResolver resolver) Resolves the table name for a record by converting the table name to upper case.Methods in st.orm.template with parameters of type TableNameResolverModifier and TypeMethodDescriptionstatic TableNameResolverTableNameResolver.toUpperCase(TableNameResolver resolver) Resolves the table name for a record by converting the table name to upper case.JpaTemplate.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new JPA template with the specified table name resolver.PreparedStatementTemplate.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new prepared statement template with the specified table name resolver.SqlTemplate.withTableNameResolver(TableNameResolver resolver) Returns a new SQL template with the specified table name resolver. -
Uses of TableNameResolver in st.orm.template.impl
Methods in st.orm.template.impl that return TableNameResolverModifier and TypeMethodDescriptionModelBuilder.tableNameResolver()Returns the table name resolver for the model.SqlTemplateImpl.tableNameResolver()Returns the table name resolver that is used by this template.Methods in st.orm.template.impl with parameters of type TableNameResolverModifier and TypeMethodDescriptionModelBuilder.tableNameResolver(TableNameResolver tableNameResolver) Sets the table name resolver for the model.JpaTemplateImpl.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new JPA template with the specified table name resolver.PreparedStatementTemplateImpl.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new prepared statement template with the specified table name resolver.SqlTemplateImpl.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new SQL template with the specified table name resolver.