Class SetCell (2.37.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
NameDescription
familyNameString
qualifierByteString
timestamplong
valueByteString
Returns
TypeDescription
SetCell

Constructors

SetCell()

public SetCell()

Methods

getFamilyName()

public abstract String getFamilyName()

Get the column family of the current SetCell.

Returns
TypeDescription
String

getQualifier()

public abstract ByteString getQualifier()

Get the column qualifier of the current SetCell.

Returns
TypeDescription
ByteString

getTimestamp()

public abstract long getTimestamp()

Get the timestamp of the current SetCell.

Returns
TypeDescription
long

getValue()

public abstract ByteString getValue()

Get the value of the current SetCell.

Returns
TypeDescription
ByteString