Class DeleteCells

java.lang.Object
com.google.cloud.bigtable.data.v2.models.DeleteCells
All Implemented Interfaces:
Entry, Serializable

@InternalApi("Intended for use by the BigtableIO in apache/beam only.") public abstract class DeleteCells extends Object implements Entry, Serializable
Representation of a DeleteCells mod in a data change.
See Also:
  • Constructor Details

    • DeleteCells

      public DeleteCells()
  • Method Details

    • create

      public static DeleteCells create(@Nonnull String familyName, @Nonnull com.google.protobuf.ByteString qualifier, @Nonnull Range.TimestampRange timestampRange)
    • getFamilyName

      @Nonnull public abstract String getFamilyName()
      Get the column family of the current DeleteCells.
    • getQualifier

      @Nonnull public abstract com.google.protobuf.ByteString getQualifier()
      Get the column qualifier of the current DeleteCells.
    • getTimestampRange

      @Nonnull public abstract Range.TimestampRange getTimestampRange()
      Get the timestamp range of the current DeleteCells.