- find(K, Class<E>) - Method in interface net.dontdrinkandroot.persistence.dao.GenericDao
-
Finds the entity with the given id of the given class.
- find(K, Class<E>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
- find(CriteriaQuery<V>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Find all entities by the given CriteriaQuery.
- find(CriteriaQuery<V>, int) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Finds all entities by the given CriteriaQuery and limit the result set.
- find(CriteriaQuery<V>, int, int) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Finds all entities by the given CriteriaQuery and limit the result set.
- find(K) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds the entity with the given id.
- find(I) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(Class<E>) - Method in interface net.dontdrinkandroot.persistence.dao.GenericDao
-
Finds all entities of the given class.
- findAll(Class<E>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
- findAll() - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities.
- findAll(SingularAttribute<? super E, ?>, boolean) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities ordered by the given attribute and the given sort order.
- findAll(SingularAttribute<? super E, ?>, boolean, int, int) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities ordered by the given attribute and the given sort order with the result set limit to the given
size.
- findAll(Collection<PredicateBuilder<E>>) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities that match all predicates generated by the given
PredicateBuilder s.
- findAll(PredicateBuilder<E>) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities that match all predicates generated by the given
PredicateBuilder s.
- findAll(PredicateBuilder<E>...) - Method in interface net.dontdrinkandroot.persistence.dao.TypedDao
-
Finds all entities that match all predicates generated by the given
PredicateBuilder s.
- findAll() - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(SingularAttribute<? super E, ?>, boolean) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(SingularAttribute<? super E, ?>, boolean, int, int) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(PredicateBuilder<E>) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(Collection<PredicateBuilder<E>>) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findAll(PredicateBuilder<E>...) - Method in class net.dontdrinkandroot.persistence.dao.TypedJpaDao
-
- findFirstOrNull(CriteriaQuery<V>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Finds the first entity by the given CriteriaQuery or null if no result was found.
- findSingle(CriteriaQuery<V>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Find a single entity by the given CriteriaQuery, throws an Exception if there is no or more than one
result.
- findSingleOrNull(CriteriaQuery<V>) - Method in class net.dontdrinkandroot.persistence.dao.GenericJpaDao
-
Finds a single entity by the given CriteriaQuery, throws an Exception if there is more than one result.