Class SetCell
java.lang.Object
com.google.cloud.bigtable.data.v2.models.SetCell
- All Implemented Interfaces:
Entry
,Serializable
@InternalApi("Intended for use by the BigtableIO in apache/beam only.")
public abstract class SetCell
extends Object
implements Entry, Serializable
Representation of a SetCell mod in a data change, whose value is concatenated by
ChangeStreamRecordMerger
in case of SetCell value chunking.- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic SetCell
create
(String familyName, com.google.protobuf.ByteString qualifier, long timestamp, com.google.protobuf.ByteString value) abstract String
Get the column family of the current SetCell.abstract com.google.protobuf.ByteString
Get the column qualifier of the current SetCell.abstract long
Get the timestamp of the current SetCell.abstract com.google.protobuf.ByteString
getValue()
Get the value of the current SetCell.
-
Constructor Details
-
SetCell
public SetCell()
-
-
Method Details
-
create
-
getFamilyName
Get the column family of the current SetCell. -
getQualifier
Get the column qualifier of the current SetCell. -
getTimestamp
public abstract long getTimestamp()Get the timestamp of the current SetCell. -
getValue
Get the value of the current SetCell.
-