Uses of Class
com.google.cloud.bigtable.data.v2.models.Mutation
-
Packages that use Mutation Package Description com.google.cloud.bigtable.data.v2.models -
-
Uses of Mutation in com.google.cloud.bigtable.data.v2.models
Methods in com.google.cloud.bigtable.data.v2.models that return Mutation Modifier and Type Method Description static Mutation
Mutation. create()
Creates new instance of Mutation object.static Mutation
Mutation. createUnsafe()
Creates new instance of Mutation object which allows setCell operation to use server side timestamp.Mutation
Mutation. deleteCells(String familyName, com.google.protobuf.ByteString qualifier)
Mutation
Mutation. deleteCells(String familyName, com.google.protobuf.ByteString qualifier, Range.TimestampRange timestampRange)
Mutation
Mutation. deleteCells(String familyName, String qualifier)
Mutation
Mutation. deleteFamily(String familyName)
Mutation
Mutation. deleteRow()
static Mutation
Mutation. fromProtoUnsafe(Iterable<Mutation> protos)
Wraps the List of protobufMutation
.static Mutation
Mutation. fromProtoUnsafe(List<Mutation> protos)
Wraps the List of protobufMutation
.Mutation
Mutation. setCell(String familyName, com.google.protobuf.ByteString qualifier, long value)
Mutation
Mutation. setCell(String familyName, com.google.protobuf.ByteString qualifier, long timestamp, long value)
Mutation
Mutation. setCell(String familyName, com.google.protobuf.ByteString qualifier, long timestamp, com.google.protobuf.ByteString value)
Mutation
Mutation. setCell(String familyName, com.google.protobuf.ByteString qualifier, com.google.protobuf.ByteString value)
Mutation
Mutation. setCell(String familyName, String qualifier, long value)
Mutation
Mutation. setCell(String familyName, String qualifier, long timestamp, long value)
Mutation
Mutation. setCell(String familyName, String qualifier, long timestamp, String value)
Mutation
Mutation. setCell(String familyName, String qualifier, String value)
Methods in com.google.cloud.bigtable.data.v2.models with parameters of type Mutation Modifier and Type Method Description BulkMutation
BulkMutation. add(com.google.protobuf.ByteString rowKey, Mutation mutation)
Add mutation for a particular row.BulkMutation
BulkMutation. add(String rowKey, Mutation mutation)
Add mutation for a particular row.static RowMutation
RowMutation. create(String tableId, com.google.protobuf.ByteString key, Mutation mutation)
Creates new instance of mutation builder by wrapping existing set of row mutations.static RowMutation
RowMutation. create(String tableId, String key, Mutation mutation)
Creates new instance of mutation builder by wrapping existing set of row mutations.static RowMutationEntry
RowMutationEntry. createFromMutationUnsafe(com.google.protobuf.ByteString key, Mutation mutation)
Creates a new instance from existing mutation.ConditionalRowMutation
ConditionalRowMutation. otherwise(Mutation mutation)
Adds changes to be atomically applied to the specified row if the condition does not yields any cells when applied to the row.ConditionalRowMutation
ConditionalRowMutation. then(Mutation mutation)
Adds changes to be atomically applied to the specified row if the condition yields at least one cell when applied to the row.
-