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