Uses of Class
com.c8db.entity.DocumentUpdateEntity
-
Packages that use DocumentUpdateEntity Package Description com.c8db com.c8db.internal -
-
Uses of DocumentUpdateEntity in com.c8db
Methods in com.c8db that return DocumentUpdateEntity Modifier and Type Method Description <T> DocumentUpdateEntity<T>C8Collection. replaceDocument(String key, T value)Replaces the document withkeywith the one in the body, provided there is such a document and no precondition is violated<T> DocumentUpdateEntity<T>C8Collection. replaceDocument(String key, T value, DocumentReplaceOptions options)Replaces the document withkeywith the one in the body, provided there is such a document and no precondition is violated<T> DocumentUpdateEntity<T>C8Collection. updateDocument(String key, T value)Partially updates the document identified by document-key.<T> DocumentUpdateEntity<T>C8Collection. updateDocument(String key, T value, DocumentUpdateOptions options)Partially updates the document identified by document-key.Methods in com.c8db that return types with arguments of type DocumentUpdateEntity Modifier and Type Method Description <T> MultiDocumentEntity<DocumentUpdateEntity<T>>C8Collection. replaceDocuments(Collection<T> values)Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are specified by the _key attributes in the documents in values.<T> MultiDocumentEntity<DocumentUpdateEntity<T>>C8Collection. replaceDocuments(Collection<T> values, DocumentReplaceOptions options)Replaces multiple documents in the specified collection with the ones in the values, the replaced documents are specified by the _key attributes in the documents in values.<T> MultiDocumentEntity<DocumentUpdateEntity<T>>C8Collection. updateDocuments(Collection<T> values)Partially updates documents, the documents to update are specified by the _key attributes in the objects on values.<T> MultiDocumentEntity<DocumentUpdateEntity<T>>C8Collection. 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 DocumentUpdateEntity in com.c8db.internal
Methods in com.c8db.internal that return DocumentUpdateEntity Modifier and Type Method Description <T> DocumentUpdateEntity<T>C8CollectionImpl. replaceDocument(String key, T value)<T> DocumentUpdateEntity<T>C8CollectionImpl. replaceDocument(String key, T value, DocumentReplaceOptions options)<T> DocumentUpdateEntity<T>C8CollectionImpl. updateDocument(String key, T value)<T> DocumentUpdateEntity<T>C8CollectionImpl. updateDocument(String key, T value, DocumentUpdateOptions options)
-