CompletableFuture<DocumentCreateEntity<Void>> |
ArangoCollectionAsync.insertDocument(Object value) |
|
<T> CompletableFuture<DocumentCreateEntity<T>> |
ArangoCollectionAsync.insertDocument(T value,
DocumentCreateOptions options) |
|
<T> CompletableFuture<DocumentCreateEntity<T>> |
ArangoCollectionAsync.insertDocument(T value,
DocumentCreateOptions options,
Class<T> type) |
|
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<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(Iterable<?> values) |
Creates new documents from the given documents, unless there is already a document with the _key given.
|
MultiDocumentEntity<DocumentCreateEntity<Void>> |
ArangoCollection.insertDocuments(Iterable<?> 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(Iterable<? extends 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) |
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<RawData>>> |
ArangoCollectionAsync.insertDocuments(RawData values,
DocumentCreateOptions options) |
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<Void>>> |
ArangoCollectionAsync.insertDocuments(Iterable<?> values) |
|
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<Void>>> |
ArangoCollectionAsync.insertDocuments(Iterable<?> values,
DocumentCreateOptions options) |
|
<T> CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<T>>> |
ArangoCollectionAsync.insertDocuments(Iterable<? extends T> values,
DocumentCreateOptions options,
Class<T> type) |
|