Class ReadModifyWriteRow

    • Method Detail

      • append

        public ReadModifyWriteRow append​(@Nonnull
                                         String familyName,
                                         @Nonnull
                                         com.google.protobuf.ByteString qualifier,
                                         @Nonnull
                                         com.google.protobuf.ByteString value)
        Appends the value to the existing value of the cell. If the targeted cell is unset, it will be treated as containing the empty string.
      • increment

        public ReadModifyWriteRow increment​(@Nonnull
                                            String familyName,
                                            @Nonnull
                                            String qualifier,
                                            long amount)
        Adds `amount` be added to the existing value. If the targeted cell is unset, it will be treated as containing a zero. Otherwise, the targeted cell must contain an 8-byte value (interpreted as a 64-bit big-endian signed integer), or the entire request will fail.
      • increment

        public ReadModifyWriteRow increment​(@Nonnull
                                            String familyName,
                                            @Nonnull
                                            com.google.protobuf.ByteString qualifier,
                                            long amount)
        Adds `amount` be added to the existing value. If the targeted cell is unset, it will be treated as containing a zero. Otherwise, the targeted cell must contain an 8-byte value (interpreted as a 64-bit big-endian signed integer), or the entire request will fail.
      • toProto

        @InternalApi
        public ReadModifyWriteRowRequest toProto​(com.google.cloud.bigtable.data.v2.internal.RequestContext requestContext)