Uses of Class
com.arangodb.model.DocumentUpdateOptions
-
Packages that use DocumentUpdateOptions Package Description com.arangodb com.arangodb.model -
-
Uses of DocumentUpdateOptions in com.arangodb
Methods in com.arangodb with parameters of type DocumentUpdateOptions Modifier and Type Method Description <T> DocumentUpdateEntity<T>
ArangoCollection. updateDocument(String key, Object value, DocumentUpdateOptions options, Class<T> returnType)
Partially updates the document identified by document-key.<T> DocumentUpdateEntity<T>
ArangoCollection. updateDocument(String key, T value, DocumentUpdateOptions options)
Partially updates the document identified by document-key.MultiDocumentEntity<DocumentUpdateEntity<RawData>>
ArangoCollection. updateDocuments(RawData values, DocumentUpdateOptions options)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on values.<T> MultiDocumentEntity<DocumentUpdateEntity<T>>
ArangoCollection. updateDocuments(Collection<?> values, DocumentUpdateOptions options, Class<T> returnType)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on values.<T> MultiDocumentEntity<DocumentUpdateEntity<T>>
ArangoCollection. updateDocuments(Collection<T> values, DocumentUpdateOptions options)
Partially updates documents, the documents to update are specified by the _key attributes in the objects on values. -
Uses of DocumentUpdateOptions in com.arangodb.model
Methods in com.arangodb.model that return DocumentUpdateOptions Modifier and Type Method Description DocumentUpdateOptions
DocumentUpdateOptions. ifMatch(String ifMatch)
DocumentUpdateOptions
DocumentUpdateOptions. ignoreRevs(Boolean ignoreRevs)
DocumentUpdateOptions
DocumentUpdateOptions. keepNull(Boolean keepNull)
DocumentUpdateOptions
DocumentUpdateOptions. mergeObjects(Boolean mergeObjects)
DocumentUpdateOptions
DocumentUpdateOptions. returnNew(Boolean returnNew)
DocumentUpdateOptions
DocumentUpdateOptions. returnOld(Boolean returnOld)
DocumentUpdateOptions
DocumentUpdateOptions. silent(Boolean silent)
DocumentUpdateOptions
DocumentUpdateOptions. streamTransactionId(String streamTransactionId)
DocumentUpdateOptions
DocumentUpdateOptions. waitForSync(Boolean waitForSync)
-