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)default voidCrudRepository. count(Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> resultHandler)default io.vertx.core.Future<Long>CrudRepository. count(io.vertx.sqlclient.SqlConnection conn, Query<E> query)voidCrudRepository. count(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> resultHandler)default io.vertx.core.Future<Optional<E>>CrudRepository. find(Query<E> query)default voidCrudRepository. find(Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Optional<E>>> resultHandler)default io.vertx.core.Future<Optional<E>>CrudRepository. find(io.vertx.sqlclient.SqlConnection conn, Query<E> query)voidCrudRepository. find(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Optional<E>>> resultHandler)default io.vertx.core.Future<List<E>>CrudRepository. findAll(Query<E> query)default io.vertx.core.Future<Page<E>>CrudRepository. findAll(Query<E> query, PageRequest pageRequest)default voidCrudRepository. findAll(Query<E> query, PageRequest pageRequest, io.vertx.core.Handler<io.vertx.core.AsyncResult<Page<E>>> resultHandler)default voidCrudRepository. findAll(Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<List<E>>> resultHandler)default io.vertx.core.Future<List<E>>CrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query)default io.vertx.core.Future<Page<E>>CrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, PageRequest pageRequest)voidCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, PageRequest pageRequest, io.vertx.core.Handler<io.vertx.core.AsyncResult<Page<E>>> resultHandler)voidCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<List<E>>> resultHandler) -
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 voidAbstractCrudRepository. count(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> resultHandler)voidAbstractCrudRepository. find(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<Optional<E>>> resultHandler)voidAbstractCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, PageRequest pageRequest, io.vertx.core.Handler<io.vertx.core.AsyncResult<Page<E>>> resultHandler)voidAbstractCrudRepository. findAll(io.vertx.sqlclient.SqlConnection conn, Query<E> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<List<E>>> resultHandler)protected io.vertx.sqlclient.TupleAbstractCrudRepository. getSqlParams(Query<E> query)protected StringAbstractCrudRepository. toSQL(String sql, Query<E> query)protected StringAbstractCrudRepository. where(String sql, 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>classAnd<E>classBetween<O,A extends Comparable<A>>classEqual<E>classGreaterThan<O,A extends Comparable<A>>classGreaterThanEqual<O,A extends Comparable<A>>classHas<E>classILike<E>classIn<E,V>classIsNull<E>classLessThan<O,A extends Comparable<A>>classLessThanEqual<O,A extends Comparable<A>>classLike<E>classNot<E>classNotEqual<E>classOr<E>classRawQuery<E>classSingleQuery<E>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.Query<E>Not. getNegatedQuery()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)Query<E>Query. limit(int limit)static <O> Query<O>QueryFactory. none()Creates a query which matches no objects in the collection.Query<E>AbstractQuery. offset(long offset)Query<E>Query. offset(long offset)Query<E>AbstractQuery. orderBy(List<Order<E>> orders)default Query<E>Query. orderBy(Order<E> order)default Query<E>Query. orderBy(Order<E>... orders)Query<E>Query. orderBy(List<Order<E>> orders)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()Collection<Query<E>>Or. getChildQueries()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 parameters in com.github.longdt.vertxorm.repository.query with type arguments of type Query Constructor Description And(Collection<Query<E>> childQueries)Or(Collection<Query<E>> childQueries)
-