Class StandardCriteriaFactory
- java.lang.Object
-
- com.speedment.jpastreamer.criteria.standard.StandardCriteriaFactory
-
- All Implemented Interfaces:
CriteriaFactory
public final class StandardCriteriaFactory extends Object implements CriteriaFactory
-
-
Constructor Summary
Constructors Constructor Description StandardCriteriaFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <ENTITY,RETURN>
Criteria<ENTITY,RETURN>createCriteria(javax.persistence.criteria.CriteriaBuilder builder, javax.persistence.criteria.CriteriaQuery<RETURN> query, javax.persistence.criteria.Root<ENTITY> root)<ENTITY> Criteria<ENTITY,ENTITY>createCriteria(javax.persistence.EntityManager entityManager, Class<ENTITY> entityClass)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.speedment.jpastreamer.criteria.CriteriaFactory
createCriteria
-
-
-
-
Method Detail
-
createCriteria
public <ENTITY,RETURN> Criteria<ENTITY,RETURN> createCriteria(javax.persistence.criteria.CriteriaBuilder builder, javax.persistence.criteria.CriteriaQuery<RETURN> query, javax.persistence.criteria.Root<ENTITY> root)
- Specified by:
createCriteriain interfaceCriteriaFactory
-
createCriteria
public <ENTITY> Criteria<ENTITY,ENTITY> createCriteria(javax.persistence.EntityManager entityManager, Class<ENTITY> entityClass)
- Specified by:
createCriteriain interfaceCriteriaFactory
-
-