Uses of Class
com.arangodb.model.DocumentCreateOptions
-
Packages that use DocumentCreateOptions Package Description com.arangodb com.arangodb.model -
-
Uses of DocumentCreateOptions in com.arangodb
Methods in com.arangodb with parameters of type DocumentCreateOptions Modifier and Type Method Description <T> DocumentCreateEntity<T>
ArangoCollection. insertDocument(T value, DocumentCreateOptions options)
Creates a new document from the given document, unless there is already a document with the _key given.<T> DocumentCreateEntity<T>
ArangoCollection. insertDocument(T value, DocumentCreateOptions options, Class<T> type)
Creates a new document from the given document, unless there is already a document with the _key given.<T> CompletableFuture<DocumentCreateEntity<T>>
ArangoCollectionAsync. insertDocument(T value, DocumentCreateOptions options)
Asynchronous version ofArangoCollection.insertDocument(Object, DocumentCreateOptions)
<T> CompletableFuture<DocumentCreateEntity<T>>
ArangoCollectionAsync. insertDocument(T value, DocumentCreateOptions options, Class<T> type)
Asynchronous version ofArangoCollection.insertDocument(Object, DocumentCreateOptions, Class)
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, 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<RawData>>>
ArangoCollectionAsync. insertDocuments(RawData values, DocumentCreateOptions options)
Asynchronous version ofArangoCollection.insertDocuments(RawData, DocumentCreateOptions)
CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<Void>>>
ArangoCollectionAsync. insertDocuments(Iterable<?> values, DocumentCreateOptions options)
Asynchronous version ofArangoCollection.insertDocuments(Iterable, DocumentCreateOptions)
<T> CompletableFuture<MultiDocumentEntity<DocumentCreateEntity<T>>>
ArangoCollectionAsync. insertDocuments(Iterable<? extends T> values, DocumentCreateOptions options, Class<T> type)
Asynchronous version ofArangoCollection.insertDocuments(Iterable, DocumentCreateOptions, Class)
-
Uses of DocumentCreateOptions in com.arangodb.model
Methods in com.arangodb.model that return DocumentCreateOptions Modifier and Type Method Description DocumentCreateOptions
DocumentCreateOptions. keepNull(Boolean keepNull)
DocumentCreateOptions
DocumentCreateOptions. mergeObjects(Boolean mergeObjects)
Only considered ifoverwriteMode(OverwriteMode)
is set toOverwriteMode.update
DocumentCreateOptions
DocumentCreateOptions. overwriteMode(OverwriteMode overwriteMode)
DocumentCreateOptions
DocumentCreateOptions. refillIndexCaches(Boolean refillIndexCaches)
DocumentCreateOptions
DocumentCreateOptions. returnNew(Boolean returnNew)
DocumentCreateOptions
DocumentCreateOptions. returnOld(Boolean returnOld)
DocumentCreateOptions
DocumentCreateOptions. silent(Boolean silent)
DocumentCreateOptions
DocumentCreateOptions. versionAttribute(String versionAttribute)
Only applicable ifoverwriteMode(OverwriteMode)
is set toOverwriteMode.update
orOverwriteMode.replace
.DocumentCreateOptions
DocumentCreateOptions. waitForSync(Boolean waitForSync)
-