Interface Mutation.SetCellOrBuilder (2.14.0)

public static interface Mutation.SetCellOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getColumnQualifier()

public abstract ByteString getColumnQualifier()

The qualifier of the column into which new data should be written. Can be any byte string, including the empty string.

bytes column_qualifier = 2;

Returns
TypeDescription
ByteString

The columnQualifier.

getFamilyName()

public abstract String getFamilyName()

The name of the family into which new data should be written. Must match [-_.a-zA-Z0-9]+

string family_name = 1;

Returns
TypeDescription
String

The familyName.

getFamilyNameBytes()

public abstract ByteString getFamilyNameBytes()

The name of the family into which new data should be written. Must match [-_.a-zA-Z0-9]+

string family_name = 1;

Returns
TypeDescription
ByteString

The bytes for familyName.

getTimestampMicros()

public abstract long getTimestampMicros()

The timestamp of the cell into which new data should be written. Use -1 for current Bigtable server time. Otherwise, the client should set this value itself, noting that the default value is a timestamp of zero if the field is left unspecified. Values must match the granularity of the table (e.g. micros, millis).

int64 timestamp_micros = 3;

Returns
TypeDescription
long

The timestampMicros.

getValue()

public abstract ByteString getValue()

The value to be written into the specified cell.

bytes value = 4;

Returns
TypeDescription
ByteString

The value.