Uses of Class
org.fryske_akademy.services.CrudReadService.SORTORDER
-
Packages that use CrudReadService.SORTORDER Package Description org.fryske_akademy.jpa Interfaces classes to support working with entities, most notably an entity interface, a Param class with support for syntax in values and value conversion and a JpqlBuilder that facilitates building (dynamic) queries.org.fryske_akademy.services This package contains interfaces and base classes for the development of crud (EJB/CDI) beans. -
-
Uses of CrudReadService.SORTORDER in org.fryske_akademy.jpa
Method parameters in org.fryske_akademy.jpa with type arguments of type CrudReadService.SORTORDER Modifier and Type Method Description StringJpqlBuilder. orderClause(Map<String,CrudReadService.SORTORDER> sort)builds an order by clauseStringJpqlBuilderImpl. orderClause(Map<String,CrudReadService.SORTORDER> sort)builds an order by clause, usesJpqlBuilderImpl.ENTITY_PREFIX. -
Uses of CrudReadService.SORTORDER in org.fryske_akademy.services
Methods in org.fryske_akademy.services that return CrudReadService.SORTORDER Modifier and Type Method Description static CrudReadService.SORTORDERCrudReadService.SORTORDER. valueOf(String name)Returns the enum constant of this type with the specified name.static CrudReadService.SORTORDER[]CrudReadService.SORTORDER. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.fryske_akademy.services that return types with arguments of type CrudReadService.SORTORDER Modifier and Type Method Description Map<String,CrudReadService.SORTORDER>CrudReadService.SORTORDER.Builder. build()static Map<String,CrudReadService.SORTORDER>CrudReadService.SORTORDER. order(String key, CrudReadService.SORTORDER order)Methods in org.fryske_akademy.services with parameters of type CrudReadService.SORTORDER Modifier and Type Method Description CrudReadService.SORTORDER.BuilderCrudReadService.SORTORDER.Builder. add(String key, CrudReadService.SORTORDER o)static Map<String,CrudReadService.SORTORDER>CrudReadService.SORTORDER. order(String key, CrudReadService.SORTORDER order)Method parameters in org.fryske_akademy.services with type arguments of type CrudReadService.SORTORDER Modifier and Type Method Description <T> List<T>AbstractCrudService. findDynamic(Integer first, Integer max, Map<String,CrudReadService.SORTORDER> sort, List<Param> params, Class<T> type)<T> List<T>CrudReadService. findDynamic(Integer first, Integer max, Map<String,CrudReadService.SORTORDER> sort, List<Param> params, Class<T> type)<T> Stream<T>AbstractCrudService. streamDynamic(Integer first, Integer max, Map<String,CrudReadService.SORTORDER> sort, List<Param> params, Class<T> type)<T> Stream<T>CrudReadService. streamDynamic(Integer first, Integer max, Map<String,CrudReadService.SORTORDER> sort, List<Param> params, Class<T> type)
-