Uses of Class
com.github.longdt.vertxorm.repository.query.And
-
Packages that use And Package Description com.github.longdt.vertxorm.repository.query -
-
Uses of And in com.github.longdt.vertxorm.repository.query
Methods in com.github.longdt.vertxorm.repository.query that return And 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.
-