Class SetCell (2.39.0)

public abstract class SetCell implements Entry, Serializable

Representation of a SetCell mod in a data change, whose value is concatenated by ChangeStreamRecordMerger in case of SetCell value chunking.

Inheritance

java.lang.Object > SetCell

Implements

Entry, Serializable

Static Methods

create(String familyName, ByteString qualifier, long timestamp, ByteString value)

public static SetCell create(String familyName, ByteString qualifier, long timestamp, ByteString value)
Parameters
Name Description
familyName String
qualifier ByteString
timestamp long
value ByteString
Returns
Type Description
SetCell

Constructors

SetCell()

public SetCell()

Methods

getFamilyName()

public abstract String getFamilyName()

Get the column family of the current SetCell.

Returns
Type Description
String

getQualifier()

public abstract ByteString getQualifier()

Get the column qualifier of the current SetCell.

Returns
Type Description
ByteString

getTimestamp()

public abstract long getTimestamp()

Get the timestamp of the current SetCell.

Returns
Type Description
long

getValue()

public abstract ByteString getValue()

Get the value of the current SetCell.

Returns
Type Description
ByteString