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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SetCellcreate(String familyName, com.google.protobuf.ByteString qualifier, long timestamp, com.google.protobuf.ByteString value) abstract StringGet the column family of the current SetCell.abstract com.google.protobuf.ByteStringGet the column qualifier of the current SetCell.abstract longGet the timestamp of the current SetCell.abstract com.google.protobuf.ByteStringgetValue()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.
-