Package | Description |
---|---|
com.arangodb | |
com.arangodb.internal |
Modifier and Type | Method and Description |
---|---|
MultiDocumentEntity<DocumentDeleteEntity<Void>> |
ArangoCollection.deleteDocuments(Collection<String> keys)
Removes multiple document
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
ArangoCollection.deleteDocuments(Collection<String> keys,
Class<T> type,
DocumentDeleteOptions options)
Removes multiple document
|
<T> MultiDocumentEntity<DocumentCreateEntity<T>> |
ArangoCollection.insertDocuments(Collection<T> values)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
<T> MultiDocumentEntity<DocumentCreateEntity<T>> |
ArangoCollection.insertDocuments(Collection<T> values,
DocumentCreateOptions options)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
<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.
|
Modifier and Type | Method and Description |
---|---|
protected <T> ArangoExecutor.ResponseDeserializer<MultiDocumentEntity<DocumentDeleteEntity<T>>> |
InternalArangoCollection.deleteDocumentsResponseDeserializer(Class<T> type) |
protected <T> ArangoExecutor.ResponseDeserializer<MultiDocumentEntity<DocumentCreateEntity<T>>> |
InternalArangoCollection.insertDocumentsResponseDeserializer(Collection<T> values,
DocumentCreateOptions params) |
protected <T> ArangoExecutor.ResponseDeserializer<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
InternalArangoCollection.replaceDocumentsResponseDeserializer(Collection<T> values,
DocumentReplaceOptions params) |
protected <T> ArangoExecutor.ResponseDeserializer<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
InternalArangoCollection.updateDocumentsResponseDeserializer(Collection<T> values,
DocumentUpdateOptions params) |
Copyright © 2016–2017 ArangoDB GmbH. All rights reserved.