Package | Description |
---|---|
com.arangodb | |
com.arangodb.async | |
com.arangodb.async.internal |
Modifier and Type | Method and Description |
---|---|
DocumentDeleteEntity<Void> |
ArangoCollection.deleteDocument(String key)
Deletes the document with the given
key from the collection. |
<T> DocumentDeleteEntity<T> |
ArangoCollection.deleteDocument(String key,
Class<T> type,
DocumentDeleteOptions options)
Deletes the document with the given
key from the collection. |
Modifier and Type | Method and Description |
---|---|
MultiDocumentEntity<DocumentDeleteEntity<Void>> |
ArangoCollection.deleteDocuments(Collection<?> values)
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
ArangoCollection.deleteDocuments(Collection<?> values,
Class<T> type,
DocumentDeleteOptions options)
Deletes multiple documents from the collection.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<DocumentDeleteEntity<Void>> |
ArangoCollectionAsync.deleteDocument(String key)
Removes a document
|
<T> CompletableFuture<DocumentDeleteEntity<T>> |
ArangoCollectionAsync.deleteDocument(String key,
Class<T> type,
DocumentDeleteOptions options)
Removes a document
|
CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<Void>>> |
ArangoCollectionAsync.deleteDocuments(Collection<?> values)
Removes multiple document
|
<T> CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<T>>> |
ArangoCollectionAsync.deleteDocuments(Collection<?> values,
Class<T> type,
DocumentDeleteOptions options)
Removes multiple document
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<DocumentDeleteEntity<Void>> |
ArangoCollectionAsyncImpl.deleteDocument(String key) |
<T> CompletableFuture<DocumentDeleteEntity<T>> |
ArangoCollectionAsyncImpl.deleteDocument(String key,
Class<T> type,
DocumentDeleteOptions options) |
CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<Void>>> |
ArangoCollectionAsyncImpl.deleteDocuments(Collection<?> values) |
<T> CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<T>>> |
ArangoCollectionAsyncImpl.deleteDocuments(Collection<?> values,
Class<T> type,
DocumentDeleteOptions options) |
Copyright © 2016–2022 ArangoDB GmbH. All rights reserved.