Package | Description |
---|---|
com.arangodb | |
com.arangodb.async | |
com.arangodb.async.internal |
Modifier and Type | Method and Description |
---|---|
<T> DocumentUpdateEntity<T> |
ArangoCollection.replaceDocument(String key,
T value)
Replaces the document with
key with the one in the body, provided there is such a document and no
precondition is violated |
<T> DocumentUpdateEntity<T> |
ArangoCollection.replaceDocument(String key,
T value,
DocumentReplaceOptions options)
Replaces the document with
key with the one in the body, provided there is such a document and no
precondition is violated |
<T> DocumentUpdateEntity<T> |
ArangoCollection.updateDocument(String key,
T value)
Partially updates the document identified by document-key.
|
<T> DocumentUpdateEntity<T> |
ArangoCollection.updateDocument(String key,
T value,
DocumentUpdateOptions options)
Partially updates the document identified by document-key.
|
<T,U> DocumentUpdateEntity<U> |
ArangoCollection.updateDocument(String key,
T value,
DocumentUpdateOptions options,
Class<U> returnType)
Partially updates the document identified by document-key.
|
Modifier and Type | Method and Description |
---|---|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.replaceDocuments(Collection<T> 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.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.replaceDocuments(Collection<T> 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.updateDocuments(Collection<T> values)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T> MultiDocumentEntity<DocumentUpdateEntity<T>> |
ArangoCollection.updateDocuments(Collection<T> values,
DocumentUpdateOptions options)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T,U> MultiDocumentEntity<DocumentUpdateEntity<U>> |
ArangoCollection.updateDocuments(Collection<T> values,
DocumentUpdateOptions options,
Class<U> returnType)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.replaceDocument(String key,
T value)
Replaces the document with key with the one in the body, provided there is such a document and no precondition is
violated
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.replaceDocument(String key,
T value,
DocumentReplaceOptions options)
Replaces the document with key with the one in the body, provided there is such a document and no precondition is
violated
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.replaceDocuments(Collection<T> 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.
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.replaceDocuments(Collection<T> 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> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.updateDocument(String key,
T value)
Partially updates the document identified by document-key.
|
<T> CompletableFuture<DocumentUpdateEntity<T>> |
ArangoCollectionAsync.updateDocument(String key,
T value,
DocumentUpdateOptions options)
Partially updates the document identified by document-key.
|
<T,U> CompletableFuture<DocumentUpdateEntity<U>> |
ArangoCollectionAsync.updateDocument(String key,
T value,
DocumentUpdateOptions options,
Class<U> returnType)
Partially updates the document identified by document-key.
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.updateDocuments(Collection<T> values)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.updateDocuments(Collection<T> values,
DocumentUpdateOptions options)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
<T,U> CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<U>>> |
ArangoCollectionAsync.updateDocuments(Collection<T> values,
DocumentUpdateOptions options,
Class<U> returnType)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
Copyright © 2016–2020 ArangoDB GmbH. All rights reserved.