Uses of Interface
st.orm.template.QueryBuilder.PredicateBuilder
Packages that use QueryBuilder.PredicateBuilder
-
Uses of QueryBuilder.PredicateBuilder in st.orm.template
Methods in st.orm.template that return QueryBuilder.PredicateBuilderModifier and TypeMethodDescriptionQueryBuilder.PredicateBuilder.and(QueryBuilder.PredicateBuilder<?, ?, ?> predicate) Adds a predicate to the WHERE clause using an AND condition.abstract QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.exists(QueryBuilder<?, ?, ?> subquery) Adds anEXISTScondition to the WHERE clause using the specified subquery.final QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.FALSE()A predicate that always evaluates to false.abstract QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.notExists(QueryBuilder<?, ?, ?> subquery) Adds anNOT EXISTScondition to the WHERE clause using the specified subquery.QueryBuilder.PredicateBuilder.or(QueryBuilder.PredicateBuilder<?, ?, ?> predicate) Adds a predicate to the WHERE clause using an OR condition.final QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.TRUE()A predicate that always evaluates to true.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.where(StringTemplatePREVIEW template) Appends a custom expression to the WHERE clause.final <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified ref.abstract <V> QueryBuilder.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> QueryBuilder.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 extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.final <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified records.abstract <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified ref.abstract <V> QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.whereAny(Metamodel<?, V> path, Operator operator, Iterable<? extends V> it) 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> QueryBuilder.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 extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified record.abstract QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.whereAnyRef(Iterable<? extends Ref<? extends Record>> it) Adds a condition to the WHERE clause that matches the specified primary keys of the table, expressed by a ref.abstract QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.whereAnyRef(Ref<? extends Record> ref) Adds a condition to the WHERE clause that matches the specified primary key of the table, expressed by a ref.abstract <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> QueryBuilder.WhereBuilder.whereAnyRef(Metamodel<?, V> path, Iterable<? extends Ref<V>> it) Adds a condition to the WHERE clause that matches the specified refs.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary key of the table.abstract QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary keys of the table.protected abstract <V> QueryBuilder.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 QueryBuilder.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 QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified primary key of the table, expressed by a ref.abstract <V extends Record>
QueryBuilder.PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified refs.Methods in st.orm.template with parameters of type QueryBuilder.PredicateBuilderModifier and TypeMethodDescriptionQueryBuilder.PredicateBuilder.and(QueryBuilder.PredicateBuilder<?, ?, ?> predicate) Adds a predicate to the WHERE clause using an AND condition.QueryBuilder.PredicateBuilder.or(QueryBuilder.PredicateBuilder<?, ?, ?> predicate) Adds a predicate to the WHERE clause using an OR condition.Method parameters in st.orm.template with type arguments of type QueryBuilder.PredicateBuilderModifier and TypeMethodDescriptionabstract QueryBuilder<T, R, ID> QueryBuilder.where(Function<QueryBuilder.WhereBuilder<T, R, ID>, QueryBuilder.PredicateBuilder<?, ?, ?>> predicate) Adds a WHERE clause to the query using aQueryBuilder.WhereBuilder.