Uses of Interface
st.orm.template.JoinBuilder
Packages that use JoinBuilder
-
Uses of JoinBuilder in st.orm.template
Subinterfaces of JoinBuilder in st.orm.templateModifier and TypeInterfaceDescriptioninterfaceTypedJoinBuilder<T extends Data,R, ID> A builder for specifying the ON condition of a JOIN clause using a type-safe entity relation or a custom expression.Methods in st.orm.template that return JoinBuilderModifier and TypeMethodDescriptionabstract JoinBuilder<T, R, ID> QueryBuilder.innerJoin(StringTemplatePREVIEW template, String alias) Adds an inner join to the query.abstract JoinBuilder<T, R, ID> QueryBuilder.join(JoinType type, StringTemplatePREVIEW template, String alias) Adds a join of the specified type to the query using a template.abstract JoinBuilder<T, R, ID> QueryBuilder.join(JoinType type, QueryBuilder<?, ?, ?> subquery, String alias) Adds a join of the specified type to the query using a subquery.abstract JoinBuilder<T, R, ID> QueryBuilder.leftJoin(StringTemplatePREVIEW template, String alias) Adds a left join to the query.abstract JoinBuilder<T, R, ID> QueryBuilder.rightJoin(StringTemplatePREVIEW template, String alias) Adds a right join to the query.