Package | Description |
---|---|
com.arangodb | |
com.arangodb.async | |
com.arangodb.async.internal | |
com.arangodb.internal |
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,
DocumentDeleteOptions options)
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<DocumentDeleteEntity<T>> |
ArangoCollection.deleteDocuments(Collection<?> values,
DocumentDeleteOptions options,
Class<T> type)
Deletes multiple documents from the collection.
|
MultiDocumentEntity<DocumentDeleteEntity<Void>> |
ArangoCollection.deleteDocuments(RawData values)
Deletes multiple documents from the collection.
|
MultiDocumentEntity<DocumentDeleteEntity<RawData>> |
ArangoCollection.deleteDocuments(RawData values,
DocumentDeleteOptions options)
Deletes multiple documents from the collection.
|
<T> MultiDocumentEntity<T> |
ArangoCollection.getDocuments(Collection<String> keys,
Class<T> type)
Retrieves multiple documents with the given
_key from the collection. |
<T> MultiDocumentEntity<T> |
ArangoCollection.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options)
Retrieves multiple documents with the given
_key from the collection. |
MultiDocumentEntity<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(Collection<?> 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<DocumentCreateEntity<T>> |
ArangoCollection.insertDocuments(Collection<T> values,
DocumentCreateOptions options,
Class<T> type)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(RawData values)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentCreateEntity<RawData>> |
ArangoCollection.insertDocuments(RawData values,
DocumentCreateOptions options)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentUpdateEntity<Void>> |
ArangoCollection.replaceDocuments(Collection<?> 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.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.
|
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.updateDocuments(Collection<?> 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<?> values,
DocumentUpdateOptions options,
Class<T> returnType)
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<Void>>> |
ArangoCollectionAsync.deleteDocuments(Collection<?> values)
Removes multiple document
|
<T> CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<T>>> |
ArangoCollectionAsync.deleteDocuments(Collection<?> values,
DocumentDeleteOptions options)
Removes multiple document
|
<T> CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<T>>> |
ArangoCollectionAsync.deleteDocuments(Collection<?> values,
DocumentDeleteOptions options,
Class<T> type)
Removes multiple document
|
CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<Void>>> |
ArangoCollectionAsync.deleteDocuments(RawData values)
Removes multiple document
|
CompletableFuture<MultiDocumentEntity<DocumentDeleteEntity<RawData>>> |
ArangoCollectionAsync.deleteDocuments(RawData values,
DocumentDeleteOptions options)
Removes multiple document
|
<T> CompletableFuture<MultiDocumentEntity<T>> |
ArangoCollectionAsync.getDocuments(Collection<String> keys,
Class<T> type)
Reads multiple documents
|
<T> CompletableFuture<MultiDocumentEntity<T>> |
ArangoCollectionAsync.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options)
Reads multiple documents
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<Void>>> |
ArangoCollectionAsync.insertDocuments(Collection<?> values)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
<T> CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<T>>> |
ArangoCollectionAsync.insertDocuments(Collection<T> values,
DocumentCreateOptions options)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
<T> CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<T>>> |
ArangoCollectionAsync.insertDocuments(Collection<T> values,
DocumentCreateOptions options,
Class<T> type)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<Void>>> |
ArangoCollectionAsync.insertDocuments(RawData values)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<RawData>>> |
ArangoCollectionAsync.insertDocuments(RawData values,
DocumentCreateOptions options)
Creates new documents from the given documents, unless there is already a document with the _key given.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.replaceDocuments(Collection<?> 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<MultiDocumentEntity<DocumentUpdateEntity<T>>> |
ArangoCollectionAsync.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.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.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.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<RawData>>> |
ArangoCollectionAsync.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.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.updateDocuments(Collection<?> 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<?> values,
DocumentUpdateOptions options,
Class<T> returnType)
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.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<Void>>> |
ArangoCollectionAsync.updateDocuments(RawData values)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
CompletableFuture<MultiDocumentEntity<DocumentUpdateEntity<RawData>>> |
ArangoCollectionAsync.updateDocuments(RawData values,
DocumentUpdateOptions options)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on
values.
|
Copyright © 2016–2023 ArangoDB GmbH. All rights reserved.