Uses of Interface
st.orm.mapping.TemplateDecorator
Packages that use TemplateDecorator
Package
Description
Record mapping contracts.
Java client API: templates, query builders and transactions.
-
Uses of TemplateDecorator in st.orm.mapping
Methods in st.orm.mapping that return TemplateDecoratorModifier and TypeMethodDescriptionTemplateDecorator.withColumnNameResolver(ColumnNameResolver columnNameResolver) Returns a new prepared statement template with the specified column name resolver.TemplateDecorator.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new prepared statement template with the specified foreign key resolver.TemplateDecorator.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new prepared statement template with the specified table name resolver. -
Uses of TemplateDecorator in st.orm.template
Method parameters in st.orm.template with type arguments of type TemplateDecoratorModifier and TypeMethodDescriptionORMTemplate.Builder.decorator(UnaryOperator<TemplateDecorator> decorator) Sets a function that transforms theTemplateDecoratorto customize template processing.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, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.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, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.