Uses of Interface
com.github.longdt.vertxorm.repository.query.Query
-
Packages that use Query Package Description com.github.longdt.vertxorm.repository com.github.longdt.vertxorm.repository.postgresql com.github.longdt.vertxorm.repository.query -
-
Uses of Query in com.github.longdt.vertxorm.repository
Methods in com.github.longdt.vertxorm.repository with parameters of type Query Modifier and Type Method Description default io.vertx.core.Future<Long>CrudRepository. count(Query<E> query)count.io.vertx.core.Future<Long>CrudRepository. count(io.vertx.sqlclient.SqlConnection conn, Query<E> query)count.default io.vertx.core.Future<Boolean>CrudRepository. exists(Query<E> query)exists.io.vertx.core.Future<Boolean>CrudRepository. exists(io.vertx.sqlclient.SqlConnection conn, Query<E> query)exists.default io.vertx.core.Future<Optional<E>>CrudRepository. find(Query<E> query)find.io.vertx.core.Future<Optional<E>>CrudRepository. find(io.vertx.sqlclient.SqlConnection conn, Query<E> query)find.default io.vertx.core.Future<List<E>>CrudRepository. findAll(Query<E> query)findAll.default io.vertx.core.Future<Page<E>>CrudRepository. findAll(Query<E> query, PageRequest pageRequest)findAll.io.vertx.core.Future<List<E>>CrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query)findAll.io.vertx.core.Future<Page<E>>CrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, PageRequest pageRequest)findAll.default <E> StringSqlSupport. getQuerySql(String sql, Query<E> query)getQuerySql.<E> StringSqlSupport. getSql(String sql, Query<E> query)getSql.<E> intSqlSupport. getUpdateDynamicAllSql(StringBuilder sqlBuilder, Object[] params, Query<E> query)<E> intSqlSupport. getUpdateDynamicSql(StringBuilder sqlBuilder, Object[] params, Query<E> query)<E> intSqlSupport. getUpdateSql(StringBuilder sqlBuilder, Query<E> query)default io.vertx.core.Future<E>CrudRepository. merge(E entity, Query<E> query)io.vertx.core.Future<E>CrudRepository. merge(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)default io.vertx.core.Future<List<E>>CrudRepository. mergeAll(E entity, Query<E> query)io.vertx.core.Future<List<E>>CrudRepository. mergeAll(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)default io.vertx.core.Future<E>CrudRepository. update(E entity, Query<E> query)io.vertx.core.Future<E>CrudRepository. update(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)default io.vertx.core.Future<Void>CrudRepository. updateDynamic(E entity, Query<E> query)io.vertx.core.Future<Void>CrudRepository. updateDynamic(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)default io.vertx.core.Future<Integer>CrudRepository. updateDynamicAll(E entity, Query<E> query)io.vertx.core.Future<Integer>CrudRepository. updateDynamicAll(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query) -
Uses of Query in com.github.longdt.vertxorm.repository.postgresql
Methods in com.github.longdt.vertxorm.repository.postgresql with parameters of type Query Modifier and Type Method Description io.vertx.core.Future<Long>AbstractCrudRepository. count(io.vertx.sqlclient.SqlConnection conn, Query<E> query)count.io.vertx.core.Future<Boolean>AbstractCrudRepository. exists(io.vertx.sqlclient.SqlConnection conn, Query<E> query)exists.io.vertx.core.Future<Optional<E>>AbstractCrudRepository. find(io.vertx.sqlclient.SqlConnection conn, Query<E> query)find.io.vertx.core.Future<List<E>>AbstractCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query)findAll.io.vertx.core.Future<Page<E>>AbstractCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, PageRequest pageRequest)findAll.<E> StringSqlSupportImpl. getSql(String sql, Query<E> query)getSql.protected TupleAbstractCrudRepository. getSqlParams(Query<E> query)getSqlParams.<E> intSqlSupportImpl. getUpdateDynamicAllSql(StringBuilder sqlBuilder, Object[] params, Query<E> query)<E> intSqlSupportImpl. getUpdateDynamicSql(StringBuilder sqlBuilder, Object[] params, Query<E> query)<E> intSqlSupportImpl. getUpdateSql(StringBuilder sqlBuilder, Query<E> query)io.vertx.core.Future<E>AbstractCrudRepository. merge(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)io.vertx.core.Future<List<E>>AbstractCrudRepository. mergeAll(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)io.vertx.core.Future<E>AbstractCrudRepository. update(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)io.vertx.core.Future<Void>AbstractCrudRepository. updateDynamic(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query)io.vertx.core.Future<Integer>AbstractCrudRepository. updateDynamicAll(io.vertx.sqlclient.SqlConnection conn, E entity, Query<E> query) -
Uses of Query in com.github.longdt.vertxorm.repository.query
Classes in com.github.longdt.vertxorm.repository.query that implement Query Modifier and Type Class Description classAbstractQuery<E>Abstract AbstractQuery class.classAnd<E>And class.classBetween<O,A extends Comparable<A>>Between class.classEqual<E>Equal class.classGreaterThan<O,A extends Comparable<A>>GreaterThan class.classGreaterThanEqual<O,A extends Comparable<A>>GreaterThanEqual class.classHas<E>Has class.classILike<E>ILike class.classIn<E,V>In class.classIsNull<E>IsNull class.classLessThan<O,A extends Comparable<A>>LessThan class.classLessThanEqual<O,A extends Comparable<A>>LessThanEqual class.classLike<E>Like class.classNot<E>Not class.classNotEqual<E>NotEqual class.classOr<E>Or class.classRawQuery<E>RawQuery class.classSingleQuery<E>Abstract SingleQuery class.Methods in com.github.longdt.vertxorm.repository.query that return Query Modifier and Type Method Description static <O> Query<O>QueryFactory. all()Creates a query which matches all objects in the collection.
This is equivalent to a literal boolean 'true'.static <E> Query<E>QueryFactory. emptyQuery()emptyQuery.Query<E>Not. getNegatedQuery()Getter for the fieldnegatedQuery.static <O,A>
Query<O>QueryFactory. in(String attribute, A... attributeValues)Creates aInquery which asserts that an attribute has at least one value matching any value in a set of values.static <O,A>
Query<O>QueryFactory. in(String attribute, List<A> attributeValues)Creates aInquery which asserts that an attribute has at least one value matching any value in a set of values.static <O> Query<O>QueryFactory. isContainedIn(String fieldName, String value)Creates aQueryquery which asserts that an attribute is contained in a certain string fragment.Query<E>AbstractQuery. limit(int limit)limit.Query<E>Query. limit(int limit)limit.static <O> Query<O>QueryFactory. none()Creates a query which matches no objects in the collection.
This is equivalent to a literal boolean 'false'.Query<E>AbstractQuery. offset(long offset)offset.Query<E>Query. offset(long offset)offset.Query<E>AbstractQuery. orderBy(List<Order<E>> orders)orderBy.default Query<E>Query. orderBy(Order<E> order)orderBy.default Query<E>Query. orderBy(Order<E>... orders)orderBy.Query<E>Query. orderBy(List<Order<E>> orders)orderBy.Methods in com.github.longdt.vertxorm.repository.query that return types with arguments of type Query Modifier and Type Method Description Collection<Query<E>>And. getChildQueries()Getter for the fieldchildQueries.Collection<Query<E>>Or. getChildQueries()Getter for the fieldchildQueries.Methods in com.github.longdt.vertxorm.repository.query with parameters of type Query Modifier and Type Method Description static <E> And<E>QueryFactory. and(Query<E> query1, Query<E> query2)Creates anAndquery, representing a logical AND on child queries, which when evaluated yields the set intersection of the result sets from child queries.static <E> And<E>QueryFactory. and(Query<E> query1, Query<E> query2, Query<E>... additionalQueries)Creates anAndquery, representing a logical AND on child queries, which when evaluated yields the set intersection of the result sets from child queries.static <E> And<E>QueryFactory. and(Query<E> query1, Query<E> query2, Collection<Query<E>> additionalQueries)Creates anAndquery, representing a logical AND on child queries, which when evaluated yields the set intersection of the result sets from child queries.static <O> Not<O>QueryFactory. not(Query<O> query)Creates aNotquery, representing a logical negation of a child query, which when evaluated yields the set complement of the result set from the child query.static <O> Or<O>QueryFactory. or(Query<O> query1, Query<O> query2)Creates anOrquery, representing a logical OR on child queries, which when evaluated yields the set union of the result sets from child queries.static <O> Or<O>QueryFactory. or(Query<O> query1, Query<O> query2, Query<O>... additionalQueries)Creates anOrquery, representing a logical OR on child queries, which when evaluated yields the set union of the result sets from child queries.static <O> Or<O>QueryFactory. or(Query<O> query1, Query<O> query2, Collection<Query<O>> additionalQueries)Creates anOrquery, representing a logical OR on child queries, which when evaluated yields the set union of the result sets from child queries.Method parameters in com.github.longdt.vertxorm.repository.query with type arguments of type Query Modifier and Type Method Description static <E> And<E>QueryFactory. and(Query<E> query1, Query<E> query2, Collection<Query<E>> additionalQueries)Creates anAndquery, representing a logical AND on child queries, which when evaluated yields the set intersection of the result sets from child queries.static <O> Or<O>QueryFactory. or(Query<O> query1, Query<O> query2, Collection<Query<O>> additionalQueries)Creates anOrquery, representing a logical OR on child queries, which when evaluated yields the set union of the result sets from child queries.Constructors in com.github.longdt.vertxorm.repository.query with parameters of type Query Constructor Description Not(Query<E> negatedQuery)Constructor for Not.Constructor parameters in com.github.longdt.vertxorm.repository.query with type arguments of type Query Constructor Description And(Collection<Query<E>> childQueries)Constructor for And.Or(Collection<Query<E>> childQueries)Constructor for Or.
-