Uses of Class
com.google.cloud.firestore.SetOptions
Packages that use SetOptions
-
Uses of SetOptions in com.google.cloud.firestore
Methods in com.google.cloud.firestore that return SetOptionsModifier and TypeMethodDescriptionstatic SetOptionsSetOptions.merge()Changes the behavior of set() calls to only replace the values specified in its data argument.static SetOptionsSetOptions.mergeFieldPaths(List<FieldPath> fields) Changes the behavior of set() calls to only replace the fields under fieldPaths.static SetOptionsSetOptions.mergeFields(String... fields) Changes the behavior of set() calls to only replace the fields under fieldPaths.static SetOptionsSetOptions.mergeFields(List<String> fields) Changes the behavior of set() calls to only replace the fields under fieldPaths.Methods in com.google.cloud.firestore with parameters of type SetOptionsModifier and TypeMethodDescriptioncom.google.api.core.ApiFuture<WriteResult>BulkWriter.set(DocumentReference documentReference, Object pojo, SetOptions options) Write to the document referred to by the provided DocumentReference.com.google.api.core.ApiFuture<WriteResult>BulkWriter.set(DocumentReference documentReference, Map<String, Object> fields, SetOptions options) Write to the document referred to by the provided DocumentReference.com.google.api.core.ApiFuture<WriteResult>DocumentReference.set(Object pojo, SetOptions options) Writes to the document referred to by this DocumentReference.com.google.api.core.ApiFuture<WriteResult>DocumentReference.set(Map<String, Object> fields, SetOptions options) Writes to the document referred to by this DocumentReference.UpdateBuilder.set(DocumentReference documentReference, Object pojo, SetOptions options) Overwrites the document referred to by this DocumentReference.UpdateBuilder.set(DocumentReference documentReference, Map<String, Object> fields, SetOptions options) Overwrites the document referred to by this DocumentReference.