<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.replaceDocument(String key,
T value,
DocumentReplaceOptions options,
Class<T> type) |
Replaces the document with key with the one in the body, provided there is such a document and no
precondition is violated
|
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.
|
<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.replaceDocuments(Collection<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.
|