Uses of Interface
st.orm.template.PredicateBuilder
Packages that use PredicateBuilder
-
Uses of PredicateBuilder in st.orm.template
Methods in st.orm.template that return PredicateBuilderModifier and TypeMethodDescriptionPredicateBuilder.and(StringTemplatePREVIEW template) Adds a predicate to the WHERE clause using an AND condition.PredicateBuilder.and(PredicateBuilder<T, ?, ?> predicate) Adds a predicate to the WHERE clause using an AND condition.<TX extends Data,RX, IDX>
PredicateBuilder<TX, RX, IDX> PredicateBuilder.andAny(PredicateBuilder<TX, RX, IDX> predicate) Adds a predicate to the WHERE clause using an AND condition.abstract PredicateBuilder<T, R, ID> WhereBuilder.exists(QueryBuilder<?, ?, ?> subquery) Adds anEXISTScondition to the WHERE clause using the specified subquery.final PredicateBuilder<T, R, ID> WhereBuilder.FALSE()A predicate that always evaluates to false.abstract PredicateBuilder<T, R, ID> WhereBuilder.notExists(QueryBuilder<?, ?, ?> subquery) Adds anNOT EXISTScondition to the WHERE clause using the specified subquery.PredicateBuilder.or(StringTemplatePREVIEW template) Adds a predicate to the WHERE clause using an OR condition.PredicateBuilder.or(PredicateBuilder<T, ?, ?> predicate) Adds a predicate to the WHERE clause using an OR condition.<TX extends Data,RX, IDX>
PredicateBuilder<TX, RX, IDX> PredicateBuilder.orAny(PredicateBuilder<TX, RX, IDX> predicate) Adds a predicate to the WHERE clause using an OR condition.final PredicateBuilder<T, R, ID> WhereBuilder.TRUE()A predicate that always evaluates to true.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract PredicateBuilder<T, R, ID> WhereBuilder.where(StringTemplatePREVIEW template) Appends a custom expression to the WHERE clause.final <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph.final <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph.abstract <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified ref.final <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.final <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph or manually added joins.final <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph or manually added joins.abstract <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified ref.final <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract PredicateBuilder<T, R, ID> WhereBuilder.whereAnyRef(Iterable<? extends Ref<?>> it) Adds a condition to the WHERE clause that matches the specified primary keys of the table, expressed by a ref.abstract <V extends Data>
PredicateBuilder<T, R, ID> WhereBuilder.whereAnyRef(Metamodel<?, V> path, Iterable<? extends Ref<V>> it) Adds a condition to the WHERE clause that matches the specified refs.abstract PredicateBuilder<T, R, ID> WhereBuilder.whereAnyRef(Ref<?> ref) Adds a condition to the WHERE clause that matches the specified primary key of the table, expressed by a ref.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary key of the table.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary keys of the table.protected abstract <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph or manually added joins.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary keys of the table, expressed by a ref.abstract <V extends Data>
PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified refs.abstract PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary key of the table, expressed by a ref.Methods in st.orm.template with parameters of type PredicateBuilderModifier and TypeMethodDescriptionPredicateBuilder.and(PredicateBuilder<T, ?, ?> predicate) Adds a predicate to the WHERE clause using an AND condition.<TX extends Data,RX, IDX>
PredicateBuilder<TX, RX, IDX> PredicateBuilder.andAny(PredicateBuilder<TX, RX, IDX> predicate) Adds a predicate to the WHERE clause using an AND condition.PredicateBuilder.or(PredicateBuilder<T, ?, ?> predicate) Adds a predicate to the WHERE clause using an OR condition.<TX extends Data,RX, IDX>
PredicateBuilder<TX, RX, IDX> PredicateBuilder.orAny(PredicateBuilder<TX, RX, IDX> predicate) Adds a predicate to the WHERE clause using an OR condition.Method parameters in st.orm.template with type arguments of type PredicateBuilderModifier and TypeMethodDescriptionabstract QueryBuilder<T, R, ID> QueryBuilder.where(Function<WhereBuilder<T, R, ID>, PredicateBuilder<T, ?, ?>> predicate) Adds a WHERE clause to the query using aWhereBuilder.abstract QueryBuilder<T, R, ID> QueryBuilder.whereAny(Function<WhereBuilder<T, R, ID>, PredicateBuilder<?, ?, ?>> predicate) Adds a WHERE clause to the query using aWhereBuilder.