Uses of Interface
org.springframework.data.relational.core.query.CriteriaDefinition
Packages that use CriteriaDefinition
Package
Description
JDBC-specific conversion classes.
Core domain types around DatabaseClient.
Query and update support.
Query and update support.
-
Uses of CriteriaDefinition in org.springframework.data.jdbc.core.convert
Methods in org.springframework.data.jdbc.core.convert with parameters of type CriteriaDefinitionModifier and TypeMethodDescriptionQueryMapper.getMappedObject(MapSqlParameterSource parameterSource, CriteriaDefinition criteria, Table table, RelationalPersistentEntity<?> entity) -
Uses of CriteriaDefinition in org.springframework.data.r2dbc.core
Methods in org.springframework.data.r2dbc.core that return CriteriaDefinitionModifier and TypeMethodDescriptionStatementMapper.DeleteSpec.getCriteria()StatementMapper.SelectSpec.getCriteria()StatementMapper.UpdateSpec.getCriteria()Methods in org.springframework.data.r2dbc.core with parameters of type CriteriaDefinitionModifier and TypeMethodDescriptionStatementMapper.DeleteSpec.withCriteria(CriteriaDefinition criteria) Associate aCriteriawith the delete and return a newStatementMapper.DeleteSpec.StatementMapper.SelectSpec.withCriteria(CriteriaDefinition criteria) Associate aCriteriawith the select and return a newStatementMapper.SelectSpec.StatementMapper.UpdateSpec.withCriteria(CriteriaDefinition criteria) Associate aCriteriawith the update and return a newStatementMapper.UpdateSpec.Constructors in org.springframework.data.r2dbc.core with parameters of type CriteriaDefinitionModifierConstructorDescriptionprotectedDeleteSpec(SqlIdentifier table, CriteriaDefinition criteria) protectedSelectSpec(Table table, List<String> projectedFields, List<Expression> selectList, CriteriaDefinition criteria, Sort sort, int limit, long offset, boolean distinct, LockMode lockMode) protectedUpdateSpec(SqlIdentifier table, Update update, CriteriaDefinition criteria) -
Uses of CriteriaDefinition in org.springframework.data.r2dbc.query
Methods in org.springframework.data.r2dbc.query with parameters of type CriteriaDefinitionModifier and TypeMethodDescriptionQueryMapper.getMappedObject(BindMarkers markers, CriteriaDefinition criteria, Table table, RelationalPersistentEntity<?> entity) -
Uses of CriteriaDefinition in org.springframework.data.relational.core.query
Classes in org.springframework.data.relational.core.query that implement CriteriaDefinitionModifier and TypeClassDescriptionclassCentral value class for creating criteria predicates.Methods in org.springframework.data.relational.core.query that return CriteriaDefinitionModifier and TypeMethodDescriptionstatic CriteriaDefinitionCriteriaDefinition.empty()Static factory method to create an emptyCriteriaDefinition.static CriteriaDefinitionCriteriaDefinition.from(List<? extends CriteriaDefinition> criteria) static CriteriaDefinitionCriteriaDefinition.from(CriteriaDefinition... criteria) CriteriaDefinition.getPrevious()Methods in org.springframework.data.relational.core.query that return types with arguments of type CriteriaDefinitionModifier and TypeMethodDescriptionQuery.getCriteria()Return theCriteriato be applied.Criteria.getGroup()CriteriaDefinition.getGroup()Methods in org.springframework.data.relational.core.query with parameters of type CriteriaDefinitionModifier and TypeMethodDescriptionCriteria.and(CriteriaDefinition criteria) static CriteriaDefinitionCriteriaDefinition.from(CriteriaDefinition... criteria) Criteria.or(CriteriaDefinition criteria) static QueryQuery.query(CriteriaDefinition criteria) Static factory method to create aQueryusing the providedCriteriaDefinition.Method parameters in org.springframework.data.relational.core.query with type arguments of type CriteriaDefinitionModifier and TypeMethodDescriptionCriteria.and(List<? extends CriteriaDefinition> criteria) static CriteriaDefinitionCriteriaDefinition.from(List<? extends CriteriaDefinition> criteria) Criteria.or(List<? extends CriteriaDefinition> criteria)