Uses of Interface
com.blazebit.persistence.spi.JpqlFunction
-
Packages that use JpqlFunction Package Description com.blazebit.persistence Blaze-Persistence is a rich Criteria API for JPA.com.blazebit.persistence.spi SPI for implementers of the Blaze-Persistence API. -
-
Uses of JpqlFunction in com.blazebit.persistence
Methods in com.blazebit.persistence that return types with arguments of type JpqlFunction Modifier and Type Method Description Map<String,JpqlFunction>
CriteriaBuilderFactory. getRegisteredFunctions()
Returns all functions that are available in queries as a map of function name toJpqlFunction
. -
Uses of JpqlFunction in com.blazebit.persistence.spi
Methods in com.blazebit.persistence.spi that return JpqlFunction Modifier and Type Method Description JpqlFunction
JpqlFunctionGroup. get(String rdbms)
Returns theJpqlFunction
for the given RDBMS name.Methods in com.blazebit.persistence.spi that return types with arguments of type JpqlFunction Modifier and Type Method Description Map<String,JpqlFunction>
EntityManagerFactoryIntegrator. getRegisteredFunctions(javax.persistence.EntityManagerFactory entityManagerFactory)
Returns all registered functions as map with the function name as key and aJpqlFunction
.Methods in com.blazebit.persistence.spi with parameters of type JpqlFunction Modifier and Type Method Description void
JpqlFunctionGroup. add(String rdbms, JpqlFunction function)
Adds the givenJpqlFunction
for the given RDBMS to the group.Constructors in com.blazebit.persistence.spi with parameters of type JpqlFunction Constructor Description JpqlFunctionGroup(String name, JpqlFunction defaultFunction)
Constructs a non-aggregate function group with the given name and given default function.Constructor parameters in com.blazebit.persistence.spi with type arguments of type JpqlFunction Constructor Description JpqlFunctionGroup(String name, boolean aggregate, Map<String,JpqlFunction> rdbmsFunctions)
Constructs a function group with the given name and given function mappings.
-