Uses of Class
com.google.cloud.spanner.Mutation.WriteBuilder
-
Packages that use Mutation.WriteBuilder Package Description com.google.cloud.spanner A client for Cloud Spanner - A no-compromise relational database service. -
-
Uses of Mutation.WriteBuilder in com.google.cloud.spanner
Methods in com.google.cloud.spanner that return Mutation.WriteBuilder Modifier and Type Method Description static Mutation.WriteBuilderMutation. newInsertBuilder(String table)Returns a builder that can be used to construct anMutation.Op.INSERTmutation againsttable; see theINSERTdocumentation for mutation semantics.static Mutation.WriteBuilderMutation. newInsertOrUpdateBuilder(String table)Returns a builder that can be used to construct anMutation.Op.INSERT_OR_UPDATEmutation againsttable; see theINSERT_OR_UPDATEdocumentation for mutation semantics.static Mutation.WriteBuilderMutation. newReplaceBuilder(String table)Returns a builder that can be used to construct anMutation.Op.REPLACEmutation againsttable; see theREPLACEdocumentation for mutation semantics.static Mutation.WriteBuilderMutation. newUpdateBuilder(String table)Returns a builder that can be used to construct anMutation.Op.UPDATEmutation againsttable; see theUPDATEdocumentation for mutation semantics.Methods in com.google.cloud.spanner that return types with arguments of type Mutation.WriteBuilder Modifier and Type Method Description ValueBinder<Mutation.WriteBuilder>Mutation.WriteBuilder. set(String columnName)Returns a binder to set the value ofcolumnNamethat should be applied by the mutation.
-