Package | Description |
---|---|
com.arangodb | |
com.arangodb.async | |
com.arangodb.async.internal | |
com.arangodb.model |
Modifier and Type | Method and Description |
---|---|
<T> T |
ArangoCollection.getDocument(String key,
Class<T> type,
DocumentReadOptions options)
Retrieves the document with the given
key from the collection. |
<T> T |
ArangoDatabase.getDocument(String id,
Class<T> type,
DocumentReadOptions options)
Reads a single document
|
<T> MultiDocumentEntity<T> |
ArangoCollection.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options)
Retrieves multiple documents with the given
_key from the collection. |
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<T> |
ArangoCollectionAsync.getDocument(String key,
Class<T> type,
DocumentReadOptions options)
Reads a single document
|
<T> CompletableFuture<T> |
ArangoDatabaseAsync.getDocument(String id,
Class<T> type,
DocumentReadOptions options)
Reads a single document
|
<T> CompletableFuture<MultiDocumentEntity<T>> |
ArangoCollectionAsync.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options)
Reads multiple documents
|
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<T> |
ArangoDatabaseAsyncImpl.getDocument(String id,
Class<T> type,
DocumentReadOptions options) |
<T> CompletableFuture<T> |
ArangoCollectionAsyncImpl.getDocument(String key,
Class<T> type,
DocumentReadOptions options) |
<T> CompletableFuture<MultiDocumentEntity<T>> |
ArangoCollectionAsyncImpl.getDocuments(Collection<String> keys,
Class<T> type,
DocumentReadOptions options) |
Modifier and Type | Method and Description |
---|---|
DocumentReadOptions |
DocumentReadOptions.allowDirtyRead(Boolean allowDirtyRead) |
DocumentReadOptions |
DocumentReadOptions.catchException(boolean catchException) |
DocumentReadOptions |
DocumentReadOptions.ifMatch(String ifMatch) |
DocumentReadOptions |
DocumentReadOptions.ifNoneMatch(String ifNoneMatch) |
DocumentReadOptions |
DocumentReadOptions.streamTransactionId(String streamTransactionId) |
Copyright © 2016–2022 ArangoDB GmbH. All rights reserved.