Uses of Class
com.arangodb.entity.DocumentDeleteEntity
-
Packages that use DocumentDeleteEntity Package Description com.arangodb -
-
Uses of DocumentDeleteEntity in com.arangodb
Methods in com.arangodb that return DocumentDeleteEntity Modifier and Type Method Description DocumentDeleteEntity<Void>ArangoCollection. deleteDocument(String key)Deletes the document with the givenkeyfrom the collection.DocumentDeleteEntity<Void>ArangoCollection. deleteDocument(String key, DocumentDeleteOptions options)Deletes the document with the givenkeyfrom the collection.<T> DocumentDeleteEntity<T>ArangoCollection. deleteDocument(String key, DocumentDeleteOptions options, Class<T> type)Deletes the document with the givenkeyfrom the collection.Methods in com.arangodb that return types with arguments of type DocumentDeleteEntity Modifier and Type Method Description 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.MultiDocumentEntity<DocumentDeleteEntity<Void>>ArangoCollection. deleteDocuments(Collection<?> values)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.
-