Uses of Class
com.arangodb.model.DocumentDeleteOptions
-
Packages that use DocumentDeleteOptions Package Description com.arangodb com.arangodb.model -
-
Uses of DocumentDeleteOptions in com.arangodb
Methods in com.arangodb with parameters of type DocumentDeleteOptions Modifier and Type Method Description DocumentDeleteEntity<Void>
ArangoCollection. deleteDocument(String key, DocumentDeleteOptions options)
Deletes the document with the givenkey
from the collection.<T> DocumentDeleteEntity<T>
ArangoCollection. deleteDocument(String key, DocumentDeleteOptions options, Class<T> type)
Deletes the document with the givenkey
from the collection.MultiDocumentEntity<DocumentDeleteEntity<RawData>>
ArangoCollection. deleteDocuments(RawData values, DocumentDeleteOptions options)
Deletes multiple documents from the collection.MultiDocumentEntity<DocumentDeleteEntity<Void>>
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. -
Uses of DocumentDeleteOptions in com.arangodb.model
Methods in com.arangodb.model that return DocumentDeleteOptions Modifier and Type Method Description DocumentDeleteOptions
DocumentDeleteOptions. ifMatch(String ifMatch)
DocumentDeleteOptions
DocumentDeleteOptions. refillIndexCaches(Boolean refillIndexCaches)
DocumentDeleteOptions
DocumentDeleteOptions. returnOld(Boolean returnOld)
DocumentDeleteOptions
DocumentDeleteOptions. silent(Boolean silent)
DocumentDeleteOptions
DocumentDeleteOptions. streamTransactionId(String streamTransactionId)
DocumentDeleteOptions
DocumentDeleteOptions. waitForSync(Boolean waitForSync)
-