Uses of Interface
st.orm.template.ORMTemplate
Packages that use ORMTemplate
Package
Description
Java repository API.
Java client API: templates, query builders and transactions.
-
Uses of ORMTemplate in st.orm.repository
Methods in st.orm.repository that return ORMTemplateModifier and TypeMethodDescriptionRepository.orm()Provides access to the underlying ORM template. -
Uses of ORMTemplate in st.orm.template
Methods in st.orm.template that return ORMTemplateModifier and TypeMethodDescriptionORMTemplate.Builder.build()Builds the ORM template.static ORMTemplateORMTemplate.of(Connection connection) Returns anORMTemplatefor use with JDBC.static ORMTemplateORMTemplate.of(Connection connection, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, with a custom template decorator.static ORMTemplateORMTemplate.of(Connection connection, StormConfig config) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfig.static ORMTemplateORMTemplate.of(Connection connection, StormConfig config, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.static ORMTemplateORMTemplate.of(DataSource dataSource) Returns anORMTemplatefor use with JDBC.static ORMTemplateORMTemplate.of(DataSource dataSource, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, with a custom template decorator.static ORMTemplateORMTemplate.of(DataSource dataSource, StormConfig config) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfig.static ORMTemplateORMTemplate.of(DataSource dataSource, StormConfig config, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.ORMTemplate.withEntityCallback(EntityCallback<?> callback) Returns a newORMTemplatewith the specified entity callback added.ORMTemplate.withEntityCallbacks(List<EntityCallback<?>> callbacks) Returns a newORMTemplatewith the specified entity callbacks added.