Uses of Class
org.springframework.data.elasticsearch.core.query.UpdateQuery
Packages that use UpdateQuery
Package
Description
This package contains classes that use the new Elasticsearch client library (co.elastic.clients:elasticsearch-java)
to access Elasticsearch.
This package contains classes that use the old Elasticsearch 7 libraries to access Elasticsearch either directly by
using the RestHighLevelClient or indirectly by using code copied from Elasticsearch libraries (reactive
implementation).
-
Uses of UpdateQuery in org.springframework.data.elasticsearch.client.elc
Methods in org.springframework.data.elasticsearch.client.elc with parameters of type UpdateQueryModifier and TypeMethodDescriptionElasticsearchTemplate.update(UpdateQuery updateQuery, IndexCoordinates index) reactor.core.publisher.Mono<UpdateResponse>ReactiveElasticsearchTemplate.update(UpdateQuery updateQuery, IndexCoordinates index) ElasticsearchTemplate.updateByQuery(UpdateQuery updateQuery, IndexCoordinates index) reactor.core.publisher.Mono<ByQueryResponse>ReactiveElasticsearchTemplate.updateByQuery(UpdateQuery updateQuery, IndexCoordinates index) Method parameters in org.springframework.data.elasticsearch.client.elc with type arguments of type UpdateQueryModifier and TypeMethodDescriptionvoidElasticsearchTemplate.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) reactor.core.publisher.Mono<Void>ReactiveElasticsearchTemplate.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) -
Uses of UpdateQuery in org.springframework.data.elasticsearch.client.erhlc
Methods in org.springframework.data.elasticsearch.client.erhlc with parameters of type UpdateQueryModifier and TypeMethodDescriptionElasticsearchRestTemplate.update(UpdateQuery query, IndexCoordinates index) Deprecated.reactor.core.publisher.Mono<UpdateResponse>ReactiveElasticsearchTemplate.update(UpdateQuery updateQuery, IndexCoordinates index) Deprecated.ElasticsearchRestTemplate.updateByQuery(UpdateQuery query, IndexCoordinates index) Deprecated.reactor.core.publisher.Mono<ByQueryResponse>ReactiveElasticsearchTemplate.updateByQuery(UpdateQuery updateQuery, IndexCoordinates index) Deprecated.Method parameters in org.springframework.data.elasticsearch.client.erhlc with type arguments of type UpdateQueryModifier and TypeMethodDescriptionvoidElasticsearchRestTemplate.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) Deprecated.reactor.core.publisher.Mono<Void>ReactiveElasticsearchTemplate.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) Deprecated. -
Uses of UpdateQuery in org.springframework.data.elasticsearch.core
Methods in org.springframework.data.elasticsearch.core that return UpdateQueryModifier and TypeMethodDescriptionprotected <T> UpdateQueryAbstractElasticsearchTemplate.buildUpdateQueryByEntity(T entity) Methods in org.springframework.data.elasticsearch.core with parameters of type UpdateQueryModifier and TypeMethodDescriptionDocumentOperations.update(UpdateQuery updateQuery, IndexCoordinates index) Partial update of the document.reactor.core.publisher.Mono<UpdateResponse>ReactiveDocumentOperations.update(UpdateQuery updateQuery, IndexCoordinates index) Partial update of the document.DocumentOperations.updateByQuery(UpdateQuery updateQuery, IndexCoordinates index) Update document(s) by queryreactor.core.publisher.Mono<ByQueryResponse>ReactiveDocumentOperations.updateByQuery(UpdateQuery updateQuery, IndexCoordinates index) Update document(s) by query.Method parameters in org.springframework.data.elasticsearch.core with type arguments of type UpdateQueryModifier and TypeMethodDescriptionvoidAbstractElasticsearchTemplate.bulkUpdate(List<UpdateQuery> queries, Class<?> clazz) voidDocumentOperations.bulkUpdate(List<UpdateQuery> queries, Class<?> clazz) Bulk update all objects.default voidDocumentOperations.bulkUpdate(List<UpdateQuery> queries, IndexCoordinates index) Bulk update all objects.voidDocumentOperations.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) Bulk update all objects.default reactor.core.publisher.Mono<Void>ReactiveDocumentOperations.bulkUpdate(List<UpdateQuery> queries, IndexCoordinates index) Bulk update all objects.reactor.core.publisher.Mono<Void>ReactiveDocumentOperations.bulkUpdate(List<UpdateQuery> queries, BulkOptions bulkOptions, IndexCoordinates index) Bulk update all objects. -
Uses of UpdateQuery in org.springframework.data.elasticsearch.core.query
Methods in org.springframework.data.elasticsearch.core.query that return UpdateQuery