Uses of Interface
st.orm.template.ForeignKeyResolver
Packages that use ForeignKeyResolver
-
Uses of ForeignKeyResolver in st.orm.template
Fields in st.orm.template declared as ForeignKeyResolverModifier and TypeFieldDescriptionstatic final ForeignKeyResolverForeignKeyResolver.DEFAULTThe default foreign key resolver used by the ORM template.Methods in st.orm.template that return ForeignKeyResolverModifier and TypeMethodDescriptionstatic ForeignKeyResolverForeignKeyResolver.camelCaseToSnakeCase()Resolves the column name for a record component using camel case to snake case conversion.SqlTemplate.foreignKeyResolver()Returns the foreign key resolver that is used by this template.static ForeignKeyResolverForeignKeyResolver.toUpperCase(ForeignKeyResolver resolver) Resolves the column name for a record component by converting the column name to upper case.Methods in st.orm.template with parameters of type ForeignKeyResolverModifier and TypeMethodDescriptionstatic ForeignKeyResolverForeignKeyResolver.toUpperCase(ForeignKeyResolver resolver) Resolves the column name for a record component by converting the column name to upper case.JpaTemplate.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new JPA template with the specified foreign key resolver.PreparedStatementTemplate.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new prepared statement template with the specified foreign key resolver.SqlTemplate.withForeignKeyResolver(ForeignKeyResolver resolver) Returns a new SQL template with the specified foreign key resolver. -
Uses of ForeignKeyResolver in st.orm.template.impl
Methods in st.orm.template.impl that return ForeignKeyResolverModifier and TypeMethodDescriptionModelBuilder.foreignKeyResolver()Returns the foreign key resolver for the model.SqlTemplateImpl.foreignKeyResolver()Returns the foreign key resolver that is used by this template.Methods in st.orm.template.impl with parameters of type ForeignKeyResolverModifier and TypeMethodDescriptionModelBuilder.foreignKeyResolver(ForeignKeyResolver foreignKeyResolver) Sets the foreign key resolver for the model.JpaTemplateImpl.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new jpa statement template with the specified foreign key resolver.PreparedStatementTemplateImpl.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new prepared statement template with the specified foreign key resolver.SqlTemplateImpl.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new SQL template with the specified foreign key resolver.