Uses of Record Class
com.flowlogix.api.dao.JPAFinder.QueryCriteria
Packages that use JPAFinder.QueryCriteria
Package
Description
This package contains the main API classes for the Flow Logix JPA DAO framework.
Jakarta EE DAO Helper and Typed Native Query.
-
Uses of JPAFinder.QueryCriteria in com.flowlogix.api.dao
Methods in com.flowlogix.api.dao that return JPAFinder.QueryCriteriaModifier and TypeMethodDescriptionJPAFinderHelper.buildQueryCriteria()Convenience method for buildingJPAFinder.QueryCriteriarecord, which containsCriteriaBuilder,RootandCriteriaQuery.<RR> JPAFinder.QueryCriteria<RR> JPAFinderHelper.buildQueryCriteria(Class<RR> cls) Convenience method for buildingJPAFinder.QueryCriteriarecord of any type, which containsCriteriaBuilder,RootandCriteriaQuery.Methods in com.flowlogix.api.dao with parameters of type JPAFinder.QueryCriteriaModifier and TypeMethodDescriptiondefault voidJPAFinder.QueryEnhancement.accept(JPAFinder.QueryCriteria<TT> criteria) Convenience method reference for use inJPAFinder.findAll(Consumer)andJPAFinder.findRange(long, long, Consumer)parameters.Method parameters in com.flowlogix.api.dao with type arguments of type JPAFinder.QueryCriteriaModifier and TypeMethodDescriptionJPAFinder.findAll(Consumer<JPAFinder.QueryCriteria<TT>> queryCriteria) find all entities with enriched, composable criteria.JPAFinder.findRange(long min, long max, Consumer<JPAFinder.QueryCriteria<TT>> queryCriteria) find entities with enriched, composable criteria given a specified range. -
Uses of JPAFinder.QueryCriteria in com.flowlogix.jeedao
Methods in com.flowlogix.jeedao that return JPAFinder.QueryCriteriaModifier and TypeMethodDescriptionDaoHelper.buildQueryCriteria()Convenience method for buildingJPAFinder.QueryCriteriarecord, which containsCriteriaBuilder,RootandCriteriaQuery.<RR> JPAFinder.QueryCriteria<RR> DaoHelper.buildQueryCriteria(Class<RR> cls) Convenience method for buildingJPAFinder.QueryCriteriarecord of any type, which containsCriteriaBuilder,RootandCriteriaQuery.Method parameters in com.flowlogix.jeedao with type arguments of type JPAFinder.QueryCriteriaModifier and TypeMethodDescriptionDaoHelper.findAll(Consumer<JPAFinder.QueryCriteria<TT>> queryCriteria) find all entities with enriched, composable criteria.DaoHelper.findRange(long min, long max, Consumer<JPAFinder.QueryCriteria<TT>> queryCriteria) find entities with enriched, composable criteria given a specified range.