CompletableFuture<DocumentUpdateEntity<Void>> |
ArangoCollectionAsync.replaceDocument(String key,
Object value) |
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.replaceDocument(String key,
T value,
DocumentReplaceOptions options) |
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.replaceDocument(String key,
T value,
DocumentReplaceOptions options,
Class<T> type) |
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.replaceDocuments(RawData values) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
MultiDocumentEntity<DocumentUpdateEntity<RawData>> |
ArangoCollection.replaceDocuments(RawData values,
DocumentReplaceOptions options) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.replaceDocuments(Iterable<?> values) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.replaceDocuments(Iterable<?> values,
DocumentReplaceOptions options) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.replaceDocuments(Iterable<? extends T> values,
DocumentReplaceOptions options,
Class<T> type) |
Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are
specified by the _key attributes in the documents in values.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.replaceDocuments(RawData values) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<RawData>>> |
ArangoCollectionAsync.replaceDocuments(RawData values,
DocumentReplaceOptions options) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.replaceDocuments(Iterable<?> values) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.replaceDocuments(Iterable<?> values,
DocumentReplaceOptions options) |
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.replaceDocuments(Iterable<? extends T> values,
DocumentReplaceOptions options,
Class<T> type) |
|
CompletableFuture<DocumentUpdateEntity<Void>> |
ArangoCollectionAsync.updateDocument(String key,
Object value) |
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.updateDocument(String key,
Object value,
DocumentUpdateOptions options,
Class<T> returnType) |
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.updateDocument(String key,
T value,
DocumentUpdateOptions options) |
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(RawData values) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
MultiDocumentEntity<DocumentUpdateEntity<RawData>> |
ArangoCollection.updateDocuments(RawData values,
DocumentUpdateOptions options) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(Iterable<?> values) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.updateDocuments(Iterable<?> values,
DocumentUpdateOptions options) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.updateDocuments(Iterable<?> values,
DocumentUpdateOptions options,
Class<T> returnType) |
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.updateDocuments(RawData values) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<RawData>>> |
ArangoCollectionAsync.updateDocuments(RawData values,
DocumentUpdateOptions options) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.updateDocuments(Iterable<?> values) |
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.updateDocuments(Iterable<?> values,
DocumentUpdateOptions options) |
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.updateDocuments(Iterable<?> values,
DocumentUpdateOptions options,
Class<T> returnType) |
|