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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteCells()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static DeleteCells
create(String familyName, com.google.protobuf.ByteString qualifier, Range.TimestampRange timestampRange)
abstract String
getFamilyName()
Get the column family of the current DeleteCells.abstract com.google.protobuf.ByteString
getQualifier()
Get the column qualifier of the current DeleteCells.abstract Range.TimestampRange
getTimestampRange()
Get the timestamp range of the current DeleteCells.
-
-
-
Method Detail
-
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.
-
-