Uses of Interface
software.xdev.spring.data.eclipse.store.repository.query.criteria.Criteria
Packages that use Criteria
Package
Description
-
Uses of Criteria in software.xdev.spring.data.eclipse.store.repository.query.criteria
Classes in software.xdev.spring.data.eclipse.store.repository.query.criteria that implement CriteriaModifier and TypeClassDescriptionclassCriteria to apply to an entity and check if the criteria is fulfilled or not.classCriteria to apply to an entity and check if the criteria is fulfilled or not.classCriteriaByExample<T,S extends T> Creates a criteria fromExamples.classCriteria to apply to an entity and check if the criteria is fulfilled or not.classCriteria to apply to an entity and check if the criteria is fulfilled or not.Methods in software.xdev.spring.data.eclipse.store.repository.query.criteria that return CriteriaModifier and TypeMethodDescriptionstatic <T> Criteria<T>Criteria.createNoCriteria()Empty criteria which is alwaystrue.Constructors in software.xdev.spring.data.eclipse.store.repository.query.criteria with parameters of type CriteriaModifierConstructorDescriptionprotectedCriteriaAndNode(Criteria<T> childCriteria, ReflectedField<T, ?> field) protectedCriteriaOrNode(Criteria<T> leftCriteria, Criteria<T> rightCriteria) -
Uses of Criteria in software.xdev.spring.data.eclipse.store.repository.query.executors
Methods in software.xdev.spring.data.eclipse.store.repository.query.executors with parameters of type CriteriaModifier and TypeMethodDescriptionstatic <T> QueryExecutor<T>QueryExecutorCreator.createQuery(org.springframework.data.util.TypeInformation<?> typeInformation, WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort) Creates and returns Query-Executor.Constructors in software.xdev.spring.data.eclipse.store.repository.query.executors with parameters of type CriteriaModifierConstructorDescriptionCountQueryExecutor(Criteria<T> criteria) ExistsQueryExecutor(Criteria<T> criteria) ListQueryExecutor(WorkingCopier<T> copier, Criteria<T> criteria) ListQueryExecutor(WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort) PageableQueryExecutor(WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort) PageableSortableCollectionQuerier(WorkingCopier<T> copier, Criteria<T> criteria) PageableSortableCollectionQuerier(WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort) SingleOptionalQueryExecutor(WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort) SingleQueryExecutor(WorkingCopier<T> copier, Criteria<T> criteria, org.springframework.data.domain.Sort sort)